]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Change C++ comments to C comments
authorMartin Kraemer <martin@apache.org>
Wed, 30 May 2001 07:41:06 +0000 (07:41 +0000)
committerMartin Kraemer <martin@apache.org>
Wed, 30 May 2001 07:41:06 +0000 (07:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89240 13f79535-47bb-0310-9956-ffa450edef68

src/main/http_main.c
src/modules/standard/mod_rewrite.c
src/os/netware/mod_tls.c
src/os/netware/os.c

index 63792e33f882badc3b99bac700c785da3e757783..f79c9a8f3859656e1d35d43772fb2dcfd0bc6287 100644 (file)
@@ -6710,8 +6710,9 @@ int REALMAIN(int argc, char *argv[])
 #endif
 
 #ifdef NETWARE
-    // If top_module is not NULL then APACHEC was not exited cleanly
-    //  and is in a bad state.  Simply clean up and exit.
+    /* If top_module is not NULL then APACHEC was not exited cleanly
+     * and is in a bad state.  Simply clean up and exit.
+     */
     check_clean_load (top_module);
     init_name_space();
     signal(SIGTERM, signal_handler);
index e40a28cd8b5553e108ae18d58013f1c675a68772..ce091f1c6cfff5c397c4e312a04d66fb4417ad57 100644 (file)
@@ -3415,7 +3415,7 @@ static int rewritemap_program_child(void *cmd, child_info *pinfo)
         }
     }
 #elif defined(NETWARE)
-   // Need something here!!! Spawn????
+   /* Need something here!!! Spawn???? */
 #elif defined(OS2)
     /* IBM OS/2 */
     execl(SHELL_PATH, SHELL_PATH, "/c", (char *)cmd, NULL);
index 809b312406bed4dbd2421a27fdf50ec2fc02aa44..58497814a934cfb9d58c0b6e6df77150b20b5754 100644 (file)
@@ -350,10 +350,11 @@ int tls_hook_Fixup(request_rec *r)
     char port[8];
     
     
-    // For some reason r->server->port always return 80 rather than
-    //  the current port.  So for now we will get it straight from
-    //  the horses mouth.
-    //  itoa(r->server->port, port, 10);
+    /* For some reason r->server->port always return 80 rather than
+     * the current port.  So for now we will get it straight from
+     * the horses mouth.
+     */
+    /*  itoa(r->server->port, port, 10); */
     itoa(ntohs(((r->connection)->local_addr).sin_port), port, 10);
     s_secure = ap_table_get(sc->sltable, port);    
     
index 73c01a16bbaa9f19e360cef90e34f58465884fde..12383138dd2af2dbb9f373c331b1dc2fa541a0d8 100644 (file)
@@ -225,7 +225,7 @@ int ap_os_is_filename_valid(const char *file)
                "COM4", "LPT1", "LPT2", "LPT3", "PRN", "NUL", NULL 
     };
 
-       // First check to make sure that we have a file so that we don't abend
+       /* First check to make sure that we have a file so that we don't abend */
        if (file == NULL)
                return 0;