Author: joes
Date: Tue Jan 13 16:49:48 2009
New Revision: 734286

URL: http://svn.apache.org/viewvc?rev=734286&view=rev
Log:
minor tweaks

Modified:
    httpd/apreq/trunk/library/module_cgi.c

Modified: httpd/apreq/trunk/library/module_cgi.c
URL: 
http://svn.apache.org/viewvc/httpd/apreq/trunk/library/module_cgi.c?rev=734286&r1=734285&r2=734286&view=diff
==============================================================================
--- httpd/apreq/trunk/library/module_cgi.c (original)
+++ httpd/apreq/trunk/library/module_cgi.c Tue Jan 13 16:49:48 2009
@@ -77,7 +77,7 @@
 };
 
 #define CRLF "\015\012"
-const char *nullstr = 0;
+static const char *nullstr = 0;
 #define DEFAULT_PROMPT "([$t] )$n(\\($l\\))([$d]): "
 #define MAX_PROMPT_NESTING_LEVELS 8
 #define MAX_BUFFER_SIZE 65536
@@ -549,7 +549,7 @@
         int i = 1;
         apr_file_printf(req->sout, "[CGI] Requested all argument 
parameters\n");
         while (1) {
-            apr_file_printf(req->sout, "[CGI] Please enter a name for 
parameter %d (or jusr hit ENTER to end): ",
+            apr_file_printf(req->sout, "[CGI] Please enter a name for 
parameter %d (or just hit ENTER to end): ",
                      i++);
             apr_file_gets(buf, 65536, req->sin);
             chomp(buf);


Reply via email to