[BACK]Return to cgi.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/cgi.c between version 1.132 and 1.133

version 1.132, 2016/05/28 13:40:48 version 1.133, 2016/07/09 19:58:36
Line 1026  main(void)
Line 1026  main(void)
   
         if (*path != '\0') {          if (*path != '\0') {
                 parse_path_info(&req, path);                  parse_path_info(&req, path);
                 if (access(path, F_OK) == -1)                  if (req.q.manpath == NULL || access(path, F_OK) == -1)
                         path = "";                          path = "";
         } else if ((querystring = getenv("QUERY_STRING")) != NULL)          } else if ((querystring = getenv("QUERY_STRING")) != NULL)
                 parse_query_string(&req, querystring);                  parse_query_string(&req, querystring);

Legend:
Removed from v.1.132  
changed lines
  Added in v.1.133

CVSweb