From: Ralph Campbell Date: Fri, 15 Feb 1985 02:04:07 +0000 (-0800) Subject: fix error message when recv() can't write new file. X-Git-Tag: BSD-4_3-Snapshot-Development~8815 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/6da2b54013b02ec229f97ebf4e4405b889dc31dc fix error message when recv() can't write new file. SCCS-vsn: usr.bin/rdist/server.c 4.23 --- diff --git a/usr/src/usr.bin/rdist/server.c b/usr/src/usr.bin/rdist/server.c index b727ab25e6..f35ca2b30d 100644 --- a/usr/src/usr.bin/rdist/server.c +++ b/usr/src/usr.bin/rdist/server.c @@ -1,5 +1,5 @@ #ifndef lint -static char *sccsid = "@(#)server.c 4.22 (Berkeley) 84/12/07"; +static char *sccsid = "@(#)server.c 4.23 (Berkeley) 85/02/14"; #endif #include "defs.h" @@ -779,7 +779,7 @@ recvf(cmd, type) return; } if (wrerr) { - error("%s:%s: %s\n", host, cp, sys_errlist[olderrno]); + error("%s:%s: %s\n", host, new, sys_errlist[olderrno]); (void) unlink(new); return; }