Commit a289ca4f authored by Nils Goroll's avatar Nils Goroll

constify

parent 50b007da
...@@ -205,8 +205,7 @@ static VCL_STRING ...@@ -205,8 +205,7 @@ static VCL_STRING
backref(VRT_CTX, VCL_INT refnum, VCL_STRING fallback, struct vmod_priv *task) backref(VRT_CTX, VCL_INT refnum, VCL_STRING fallback, struct vmod_priv *task)
{ {
ov_t *ov; ov_t *ov;
char *substr; const char *substr, *start;
const char *start;
int len; int len;
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC); CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
......
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