]> granicus.if.org Git - apache/commitdiff
Fix comment style
authorPaul Querna <pquerna@apache.org>
Tue, 15 Nov 2011 17:46:27 +0000 (17:46 +0000)
committerPaul Querna <pquerna@apache.org>
Tue, 15 Nov 2011 17:46:27 +0000 (17:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1202328 13f79535-47bb-0310-9956-ffa450edef68

modules/apreq/handle.c
server/apreq_module_cgi.c

index 2de02dd229a2db8447b6bcb28dfd2c6afb5c8884..d2bdca7ac0df7b18318e70cb9c4c0a38d20ac451 100644 (file)
@@ -385,7 +385,7 @@ apr_status_t apache2_temp_dir_set(apreq_handle_t *handle,
         apreq_filter_make_context(f);
 
     ctx = f->ctx;
-    // init vs incomplete state?
+    /* init vs incomplete state? */
     if (ctx->temp_dir == NULL && ctx->bytes_read == 0) {
         if (path != NULL)
             ctx->temp_dir = apr_pstrdup(handle->pool, path);
index 14fb39ba395023e5df2e4bf03aa186917b9eff88..f68b95f5e4702a500a961f2116fb7b52c0b6513f 100644 (file)
@@ -14,7 +14,6 @@
 **  See the License for the specific language governing permissions and
 **  limitations under the License.
 */
-#include <assert.h>
 
 #define APR_WANT_STRFUNC
 #include "apr_want.h"
@@ -410,7 +409,7 @@ static void init_body(apreq_handle_t *handle)
     req->in         = apr_brigade_create(pool, ba);
     req->tmpbb      = apr_brigade_create(pool, ba);
 
-    apr_file_open_stdin(&file, pool); // error status?
+    apr_file_open_stdin(&file, pool); /* error status? */
     pipe = apr_bucket_pipe_create(file, ba);
     eos = apr_bucket_eos_create(ba);
     APR_BRIGADE_INSERT_HEAD(req->in, pipe);