Commit f6243606 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

strchr(const char *) returns a const char *.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1546 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 0c17bd4f
......@@ -865,7 +865,8 @@ http_SetHeader(struct worker *w, int fd, struct http *to, const char *hdr)
static void
http_PutField(struct http *to, int field, const char *string)
{
char *e, *p;
const char *e;
char *p;
int l;
CHECK_OBJ_NOTNULL(to, HTTP_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