]> granicus.if.org Git - apache/commitdiff
fix various // comments so they'll work portably
authorJeff Trawick <trawick@apache.org>
Sun, 17 Jun 2001 18:15:31 +0000 (18:15 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 17 Jun 2001 18:15:31 +0000 (18:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89379 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_case_filter.c

index e61e2f4e0322e441b9286e3376adbbaef78a78a7..14addaf0e8827937d9f0ac43dc41a2b6be361a9d 100644 (file)
@@ -1,4 +1,4 @@
-// Ben messing around...
+/* Ben messing around... */
 
 #include "httpd.h"
 #include "http_config.h"
@@ -43,7 +43,7 @@ static apr_status_t CaseFilterOutFilter(ap_filter_t *f,
     apr_bucket *pbktIn;
     apr_bucket_brigade *pbbOut;
 
-    // XXX: is this the most appropriate pool?
+    /* XXX: is this the most appropriate pool? */
     pbbOut=apr_brigade_create(f->r->pool);
     APR_BRIGADE_FOREACH(pbktIn,pbbIn)
        {
@@ -55,27 +55,28 @@ static apr_status_t CaseFilterOutFilter(ap_filter_t *f,
 
        if(APR_BUCKET_IS_EOS(pbktIn))
            {
-           // XXX: why can't I reuse pbktIn???
+            /* XXX: why can't I reuse pbktIn??? */
            apr_bucket *pbktEOS=apr_bucket_eos_create();
            APR_BRIGADE_INSERT_TAIL(pbbOut,pbktEOS);
            break;
            }
 
-       // read
+       /* read */
        apr_bucket_read(pbktIn,&data,&len,APR_BLOCK_READ);
 
-       // write
+       /* write */
        buf=apr_palloc(f->r->pool,len);
        for(n=0 ; n < len ; ++n)
            buf[n]=toupper(data[n]);
 
-       // XXX: should we use a heap bucket instead? Or a transient (in
-       // which case we need a separate brigade for each bucket)?
+       /* XXX: should we use a heap bucket instead? Or a transient (in
+        * which case we need a separate brigade for each bucket)?
+         */
        pbktOut=apr_bucket_pool_create(buf,len,f->r->pool);
        APR_BRIGADE_INSERT_TAIL(pbbOut,pbktOut);
        }
 
-    // XXX: is there any advantage to passing a brigade for each bucket?
+    /* XXX: is there any advantage to passing a brigade for each bucket? */
     return ap_pass_brigade(f->next,pbbOut);
     }