diff options
author | peter <peter@FreeBSD.org> | 1995-08-17 04:57:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-08-17 04:57:21 +0000 |
commit | f2c21db1649c3858bf0d3d1775e0462f923dd982 (patch) | |
tree | ba18adf02650ad8839f385b7f27f91ea42b1c1b9 /usr.sbin/sendmail/src/daemon.c | |
parent | a9bf7387cf18bf6618c70967ca793ccfc13103f2 (diff) | |
download | FreeBSD-src-f2c21db1649c3858bf0d3d1775e0462f923dd982.zip FreeBSD-src-f2c21db1649c3858bf0d3d1775e0462f923dd982.tar.gz |
Merge in the remaining differences from 8.6.11 to 8.6.12.
Note that conf.c, although there was an import conflict, it did not
require intervention, as it was the $Id$ tag. It would have become
rev 1.8 on checkout so there's no point changing it from 1.7 to
1.1.1.3 as the "-j" option wanted to do.. Trust me.. :-)
Diffstat (limited to 'usr.sbin/sendmail/src/daemon.c')
-rw-r--r-- | usr.sbin/sendmail/src/daemon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sendmail/src/daemon.c b/usr.sbin/sendmail/src/daemon.c index 1b58da4..b4b4e8b 100644 --- a/usr.sbin/sendmail/src/daemon.c +++ b/usr.sbin/sendmail/src/daemon.c @@ -37,9 +37,9 @@ #ifndef lint #ifdef DAEMON -static char sccsid[] = "@(#)daemon.c 8.48.1.4 (Berkeley) 2/28/95 (with daemon mode)"; +static char sccsid[] = "@(#)daemon.c 8.48.1.5 (Berkeley) 3/28/95 (with daemon mode)"; #else -static char sccsid[] = "@(#)daemon.c 8.48.1.4 (Berkeley) 2/28/95 (without daemon mode)"; +static char sccsid[] = "@(#)daemon.c 8.48.1.5 (Berkeley) 3/28/95 (without daemon mode)"; #endif #endif /* not lint */ @@ -1078,7 +1078,7 @@ getauthinfo(fd) /* get result */ p = &ibuf[0]; - nleft = sizeof(ibuf - 1); + nleft = sizeof ibuf - 1; while ((i = read(s, p, nleft)) > 0) { p += i; |