From: Martin Kraemer Date: Wed, 30 May 2001 07:41:06 +0000 (+0000) Subject: Change C++ comments to C comments X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de27432e726eaed42ed8f4ddf863a34218dda159;p=thirdparty%2Fapache%2Fhttpd.git Change C++ comments to C comments git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89240 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index 63792e33f88..f79c9a8f385 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -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); diff --git a/src/modules/standard/mod_rewrite.c b/src/modules/standard/mod_rewrite.c index e40a28cd8b5..ce091f1c6cf 100644 --- a/src/modules/standard/mod_rewrite.c +++ b/src/modules/standard/mod_rewrite.c @@ -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); diff --git a/src/os/netware/mod_tls.c b/src/os/netware/mod_tls.c index 809b312406b..58497814a93 100644 --- a/src/os/netware/mod_tls.c +++ b/src/os/netware/mod_tls.c @@ -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); diff --git a/src/os/netware/os.c b/src/os/netware/os.c index 73c01a16bba..12383138dd2 100644 --- a/src/os/netware/os.c +++ b/src/os/netware/os.c @@ -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;