You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2009/10/08 16:10:57 UTC

svn commit: r823185 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c

Author: covener
Date: Thu Oct  8 14:10:56 2009
New Revision: 823185

URL: http://svn.apache.org/viewvc?rev=823185&view=rev
Log:
replace c99 comments

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c?rev=823185&r1=823184&r2=823185&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c Thu Oct  8 14:10:56 2009
@@ -579,7 +579,7 @@
                     apr_file_trunc(fd, 0);
                     cur_pos = 0;
                 }
-                // Write request to tmp file
+                /* Write request to tmp file */
                 if ((rv =
                      apr_file_write_full(fd, (const void *) data, len,
                                          &wrote_len)) != APR_SUCCESS
@@ -589,7 +589,7 @@
                                   "mod_fcgid: can't write tmp file for stdin request");
                     return HTTP_INTERNAL_SERVER_ERROR;
                 }
-                // Create file bucket
+                /* Create file bucket */
                 bucket_stdin =
                     apr_bucket_file_create(fd, cur_pos, len, r->pool,
                                            r->connection->bucket_alloc);