diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-09-10 16:18:38 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-09-10 16:18:38 +0000 |
commit | aacef2b9b25ad6459231ff8cfe5eef855ff9764f (patch) | |
tree | fabf6afaba1754971424a43a3e85bc8365df0c02 /usr.bin/mail | |
parent | 2f7a8f403f39671f008974b764c19cc66edde52d (diff) |
Fix comments
Diffstat (limited to 'usr.bin/mail')
-rw-r--r-- | usr.bin/mail/popen.c | 6 | ||||
-rw-r--r-- | usr.bin/mail/quit.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/mail/popen.c b/usr.bin/mail/popen.c index a2c42116431..967167904ae 100644 --- a/usr.bin/mail/popen.c +++ b/usr.bin/mail/popen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: popen.c,v 1.21 1998/09/10 16:06:40 millert Exp $ */ +/* $OpenBSD: popen.c,v 1.22 1998/09/10 16:18:37 millert Exp $ */ /* $NetBSD: popen.c,v 1.6 1997/05/13 06:48:42 mikel Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: popen.c,v 1.21 1998/09/10 16:06:40 millert Exp $"; +static char rcsid[] = "$OpenBSD: popen.c,v 1.22 1998/09/10 16:18:37 millert Exp $"; #endif #endif /* not lint */ @@ -430,7 +430,7 @@ free_child(pid) } /* - * Lock(1)/unlock(0) mail spool using mail.local's -H flag. + * Lock(1)/unlock(0) mail spool using lockspool(1). * Returns 1 for success, 0 for failure, -1 for bad usage. */ static int diff --git a/usr.bin/mail/quit.c b/usr.bin/mail/quit.c index 183d64b4e6c..bcf8ffb1212 100644 --- a/usr.bin/mail/quit.c +++ b/usr.bin/mail/quit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quit.c,v 1.10 1998/06/12 17:51:52 millert Exp $ */ +/* $OpenBSD: quit.c,v 1.11 1998/09/10 16:18:37 millert Exp $ */ /* $NetBSD: quit.c,v 1.6 1996/12/28 07:11:07 tls Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)quit.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: quit.c,v 1.10 1998/06/12 17:51:52 millert Exp $"; +static char rcsid[] = "$OpenBSD: quit.c,v 1.11 1998/09/10 16:18:37 millert Exp $"; #endif #endif /* not lint */ @@ -118,7 +118,7 @@ quit() } if (!spool_lock()) { (void)Fclose(fbuf); - return; /* mail.local printed error for us */ + return; /* lockspool printed error for us */ } rbuf = NULL; if (fstat(fileno(fbuf), &minfo) >= 0 && minfo.st_size > mailsize) { |