Commit 544749c9 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Whitespace

parent 2ddab727
...@@ -215,8 +215,8 @@ vsb_esc_cat(struct vsb *sb, const char *b, const char *e) ...@@ -215,8 +215,8 @@ vsb_esc_cat(struct vsb *sb, const char *b, const char *e)
VSB_cat(sb, "\\\""); VSB_cat(sb, "\\\"");
break; break;
case '\\': case '\\':
VSB_cat(sb, "\\\\"); VSB_cat(sb, "\\\\");
break; break;
default: default:
VSB_putc(sb, *b); VSB_putc(sb, *b);
break; break;
...@@ -272,7 +272,7 @@ format_fragment(const struct format *format) ...@@ -272,7 +272,7 @@ format_fragment(const struct format *format)
if (format->string == NULL) if (format->string == NULL)
return (-1); return (-1);
AZ(vsb_esc_cat(CTX.vsb, format->string, AZ(vsb_esc_cat(CTX.vsb, format->string,
format->string + strlen(format->string))); format->string + strlen(format->string)));
return (0); return (0);
} }
AZ(vsb_fcat(CTX.vsb, format->frag, NULL)); AZ(vsb_fcat(CTX.vsb, format->frag, NULL));
......
...@@ -233,7 +233,7 @@ vmod_cache_req_body(VRT_CTX, VCL_BYTES size) ...@@ -233,7 +233,7 @@ vmod_cache_req_body(VRT_CTX, VCL_BYTES size)
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC); CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
result = VRT_CacheReqBody(ctx, size); result = VRT_CacheReqBody(ctx, size);
VSLb(ctx->vsl, SLT_Debug,"VRT_CacheReqBody(%zu): %d", VSLb(ctx->vsl, SLT_Debug, "VRT_CacheReqBody(%zu): %d",
(size_t)size, result); (size_t)size, result);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment