[BACK]Return to cgi-bozo.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / httpd

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/libexec/httpd/cgi-bozo.c between version 1.24 and 1.24.2.1

version 1.24, 2014/01/02 08:21:38 version 1.24.2.1, 2014/08/10 06:52:40
Line 259  bozo_process_cgi(bozo_httpreq_t *request
Line 259  bozo_process_cgi(bozo_httpreq_t *request
         if (!httpd->cgibin && !httpd->process_cgi)          if (!httpd->cgibin && !httpd->process_cgi)
                 return 0;                  return 0;
   
         uri = request->hr_oldfile ? request->hr_oldfile : request->hr_file;          if (request->hr_oldfile && strcmp(request->hr_oldfile, "/") != 0)
                   uri = request->hr_oldfile;
           else
                   uri = request->hr_file;
   
         if (uri[0] == '/')          if (uri[0] == '/')
                 file = bozostrdup(httpd, uri);                  file = bozostrdup(httpd, uri);
         else          else

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.24.2.1

CVSweb <webmaster@jp.NetBSD.org>