aboutsummaryrefslogtreecommitdiff
path: root/lib/libfetch
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2000-05-07 20:02:52 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2000-05-07 20:02:52 +0000
commit807c941c90bd51893a26af883a71167166d8cec6 (patch)
tree259f5b89bcc993e40702aec9bb421815b49cf8ee /lib/libfetch
parente6182307e80c9b90c02bff8161456abbb6e46d01 (diff)
Notes
Diffstat (limited to 'lib/libfetch')
-rw-r--r--lib/libfetch/common.c2
-rw-r--r--lib/libfetch/fetch.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c
index ed5072ce1c3cc..11b947c2efe63 100644
--- a/lib/libfetch/common.c
+++ b/lib/libfetch/common.c
@@ -223,7 +223,7 @@ _fetch_connect(char *host, int port, int verbose)
_fetch_info("connecting to %s:%d", host, port);
/* set up socket address structure */
- bzero(&sin, sizeof(sin));
+ bzero(&sin, sizeof sin);
bcopy(he->h_addr, (char *)&sin.sin_addr, he->h_length);
sin.sin_family = he->h_addrtype;
sin.sin_port = htons(port);
diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c
index 3c944a189be73..bc2f565d9c954 100644
--- a/lib/libfetch/fetch.c
+++ b/lib/libfetch/fetch.c
@@ -224,7 +224,7 @@ fetchParseURL(char *URL)
int i;
/* allocate struct url */
- if ((u = calloc(1, sizeof(struct url))) == NULL) {
+ if ((u = calloc(1, sizeof *u)) == NULL) {
errno = ENOMEM;
_fetch_syserr();
return NULL;
@@ -284,7 +284,7 @@ nohost:
/* document */
if (*p) {
struct url *t;
- t = realloc(u, sizeof(*u)+strlen(p)-1);
+ t = realloc(u, sizeof *u + strlen(p) - 1);
if (t == NULL) {
errno = ENOMEM;
_fetch_syserr();