diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-29 16:48:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-29 16:48:14 +0000 |
commit | c644a61a2a645f25562d26c9c742807fc84af1fb (patch) | |
tree | 15090f034599c644ded66b06ed4aeca2fe86c36e /usr.bin/vacation | |
parent | ce900e04dc3f53503d30020a11a4b0c79a3c8c76 (diff) |
oops
Diffstat (limited to 'usr.bin/vacation')
-rw-r--r-- | usr.bin/vacation/vacation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vacation/vacation.c b/usr.bin/vacation/vacation.c index fe5efe8daea..56764339f81 100644 --- a/usr.bin/vacation/vacation.c +++ b/usr.bin/vacation/vacation.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vacation.c,v 1.6 1997/07/29 02:08:40 bitblt Exp $ */ +/* $OpenBSD: vacation.c,v 1.7 1997/07/29 16:48:13 deraadt Exp $ */ /* $NetBSD: vacation.c,v 1.7 1995/04/29 05:58:27 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)vacation.c 8.2 (Berkeley) 1/26/94"; #endif -static char rcsid[] = "$OpenBSD: vacation.c,v 1.6 1997/07/29 02:08:40 bitblt Exp $"; +static char rcsid[] = "$OpenBSD: vacation.c,v 1.7 1997/07/29 16:48:13 deraadt Exp $"; #endif /* not lint */ /* @@ -429,7 +429,7 @@ sendmessage(myname) close(pvect[0]); sfp = fdopen(pvect[1], "w"); fprintf(sfp, "To: %s\n", from); - fprintf(sfp, "From: %s\n, myname); + fprintf(sfp, "From: %s\n", myname); while (fgets(buf, sizeof buf, mfp)) fputs(buf, sfp); fclose(mfp); |