diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-15 23:13:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-15 23:13:08 +0000 |
commit | db0bc3759f980cdc899215e89804bd0e2f2369d8 (patch) | |
tree | 1940da755573d9979784e03a77fdbfa167498429 /usr.bin/ftp/fetch.c | |
parent | 3a5ca0b5fae2904ddbce7f3f19d23a8eafbcfc25 (diff) |
remove extra \n in {warn,err}{,x} calls
Diffstat (limited to 'usr.bin/ftp/fetch.c')
-rw-r--r-- | usr.bin/ftp/fetch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index d988fc2e13d..0797f47c8c6 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.46 2003/04/05 17:19:47 deraadt Exp $ */ +/* $OpenBSD: fetch.c,v 1.47 2003/08/15 23:13:06 deraadt Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -38,7 +38,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: fetch.c,v 1.46 2003/04/05 17:19:47 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: fetch.c,v 1.47 2003/08/15 23:13:06 deraadt Exp $"; #endif /* not lint */ /* @@ -233,7 +233,7 @@ url_get(origline, proxyenv, outfile) progressmeter(-1); if ((buf = malloc(4096)) == NULL) - errx(1, "Can't allocate memory for transfer buffer\n"); + errx(1, "Can't allocate memory for transfer buffer"); /* Finally, suck down the file. */ i = 0; @@ -497,7 +497,7 @@ again: /* Finally, suck down the file. */ if ((buf = malloc(4096)) == NULL) - errx(1, "Can't allocate memory for transfer buffer\n"); + errx(1, "Can't allocate memory for transfer buffer"); i = 0; while ((len = fread(buf, sizeof(char), 4096, fin)) > 0) { bytes += len; |