Commit fc269c2e authored by Tollef Fog Heen's avatar Tollef Fog Heen

Merge r3345: Get rid of <strings.h>.



git-svn-id: http://www.varnish-cache.org/svn/branches/2.0@3594 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 32c7e988
......@@ -102,7 +102,7 @@ TCP_filter_http(int sock)
struct accept_filter_arg afa;
int i;
bzero(&afa, sizeof(afa));
memset(&afa, 0, sizeof(afa));
strcpy(afa.af_name, "httpready");
errno = 0;
i = setsockopt(sock, SOL_SOCKET, SO_ACCEPTFILTER,
......
......@@ -34,7 +34,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "libvarnish.h"
#include "vsb.h"
......@@ -135,7 +134,7 @@ vsb_extend(struct vsb *s, int addlen)
newbuf = (char *)SBMALLOC(newsize);
if (newbuf == NULL)
return (-1);
bcopy(s->s_buf, newbuf, s->s_size);
memcpy(newbuf, s->s_buf, s->s_size);
if (VSB_ISDYNAMIC(s))
SBFREE(s->s_buf);
else
......@@ -163,12 +162,12 @@ vsb_new(struct vsb *s, char *buf, int length, int flags)
s = (struct vsb *)SBMALLOC(sizeof *s);
if (s == NULL)
return (NULL);
bzero(s, sizeof *s);
memset(s, 0, sizeof *s);
s->s_flags = flags;
s->s_magic = VSB_MAGIC;
VSB_SETFLAG(s, VSB_DYNSTRUCT);
} else {
bzero(s, sizeof *s);
memset(s, 0, sizeof *s);
s->s_flags = flags;
s->s_magic = VSB_MAGIC;
}
......@@ -464,7 +463,7 @@ vsb_delete(struct vsb *s)
if (VSB_ISDYNAMIC(s))
SBFREE(s->s_buf);
isdyn = VSB_ISDYNSTRUCT(s);
bzero(s, sizeof *s);
memset(s, 0, sizeof *s);
if (isdyn)
SBFREE(s);
}
......
......@@ -36,7 +36,6 @@
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#ifndef HAVE_STRLCPY
#include "compat/strlcpy.h"
......
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