]> granicus.if.org Git - apache/commitdiff
nit: Consistently CamelCase "ScriptSock".
authorColm MacCarthaigh <colm@apache.org>
Thu, 25 Aug 2005 10:56:12 +0000 (10:56 +0000)
committerColm MacCarthaigh <colm@apache.org>
Thu, 25 Aug 2005 10:56:12 +0000 (10:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240043 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_cgid.c

index 4c1b3bab98393b43396209628ef0603ed96b7930..72f60ef50b562a411f42e9113987fb895cf857b1 100644 (file)
@@ -936,7 +936,7 @@ static const char *set_script_socket(cmd_parms *cmd, void *dummy, const char *ar
     sockname = ap_server_root_relative(cmd->pool, arg); 
 
     if (!sockname) {
-        return apr_pstrcat(cmd->pool, "Invalid Scriptsock path",
+        return apr_pstrcat(cmd->pool, "Invalid ScriptSock path",
                            arg, NULL);
     }
 
@@ -951,7 +951,7 @@ static const command_rec cgid_cmds[] =
                   "the maximum length (in bytes) of the script debug log"), 
     AP_INIT_TAKE1("ScriptLogBuffer", set_scriptlog_buffer, NULL, RSRC_CONF,
                   "the maximum size (in bytes) to record of a POST request"), 
-    AP_INIT_TAKE1("Scriptsock", set_script_socket, NULL, RSRC_CONF,
+    AP_INIT_TAKE1("ScriptSock", set_script_socket, NULL, RSRC_CONF,
                   "the name of the socket to use for communication with "
                   "the cgi daemon."), 
     {NULL}