]> granicus.if.org Git - apache/commitdiff
Undo my unintentionally overzelous name change, and fix the style of sizeof()
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 2 Aug 2001 22:54:39 +0000 (22:54 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 2 Aug 2001 22:54:39 +0000 (22:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89887 13f79535-47bb-0310-9956-ffa450edef68

modules/tls/mod_tls.c

index 10e0637eca4b0c7d28a72cfc77250f42e183ba38..2e78bc89a27b4f0d62aca2064cbda164f86eb74e 100644 (file)
@@ -89,7 +89,7 @@ typedef struct tls_filter_ctx
 
 static void *create_tls_server_config(apr_pool_t *p, server_rec *s)
 {
-    tls_config_rec *tcfg = apr_pcalloc(p, sizeof *tcfg);
+    tls_config_rec *tcfg = apr_pcalloc(p, sizeof(*tcfg));
 
     tcfg->enabled = 0;
     tcfg->certificate_file = tcfg->key_file = NULL;
@@ -164,15 +164,15 @@ static apr_status_t churn_output(tls_filter_ctx *ctx)
 
         if (SSLStateMachine_write_can_extract(ctx->state_machine)) {
             n = SSLStateMachine_write_extract(ctx->state_machine, buf,
-                                              sizeof buf);
+                                              sizeof(buf));
             if (n > 0) {
-                char *buf;
+                char *pbuf;
 
                 if (!bb_out)
                     bb_out = apr_brigade_create(ctx->output_filter->c->pool);
 
-                buf = apr_pmemdup(ctx->output_filter->c->pool, buf, n);
-                b = apr_bucket_pool_create(buf, n, 
+                pbuf = apr_pmemdup(ctx->output_filter->c->pool, buf, n);
+                b = apr_bucket_pool_create(pbuf, n, 
                                            ctx->output_filter->c->pool);
                 APR_BRIGADE_INSERT_TAIL(bb_out, b);
                 done = 1;
@@ -263,16 +263,16 @@ static apr_status_t churn(tls_filter_ctx *ctx, apr_read_type_e readtype,
         /* write SSL */
         SSLStateMachine_read_inject(ctx->state_machine, data, len);
 
-        n = SSLStateMachine_read_extract(ctx->state_machine, buf, sizeof buf);
+        n = SSLStateMachine_read_extract(ctx->state_machine, buf, sizeof(buf));
         if (n > 0) {
             apr_bucket *b_out;
-            char *buf;
+            char *pbuf;
 
-            buf = apr_pmemdup(ctx->input_filter->c->pool, buf, n);
+            pbuf = apr_pmemdup(ctx->input_filter->c->pool, buf, n);
             /* XXX: should we use a heap bucket instead? Or a transient (in
              * which case we need a separate brigade for each bucket)?
              */
-            b_out = apr_bucket_pool_create(buf, n, ctx->input_filter->c->pool);
+            b_out = apr_bucket_pool_create(pbuf, n, ctx->input_filter->c->pool);
             APR_BRIGADE_INSERT_TAIL(ctx->bb_decrypted, b_out);
 
             /* Once we've read something, we can move to non-blocking mode