fix botch in IDENT code
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Wed, 29 Mar 1995 09:36:30 +0000 (01:36 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Wed, 29 Mar 1995 09:36:30 +0000 (01:36 -0800)
SCCS-vsn: usr.sbin/sendmail/src/daemon.c 8.48.1.5

usr/src/usr.sbin/sendmail/src/daemon.c

index 127b631..361ff06 100644 (file)
@@ -12,9 +12,9 @@
 
 #ifndef lint
 #ifdef DAEMON
 
 #ifndef lint
 #ifdef DAEMON
-static char sccsid[] = "@(#)daemon.c   8.75 (Berkeley) %G% (with daemon mode)";
+static char sccsid[] = "@(#)daemon.c   8.48.1.5 (Berkeley) %G% (with daemon mode)";
 #else
 #else
-static char sccsid[] = "@(#)daemon.c   8.75 (Berkeley) %G% (without daemon mode)";
+static char sccsid[] = "@(#)daemon.c   8.48.1.5 (Berkeley) %G% (without daemon mode)";
 #endif
 #endif /* not lint */
 
 #endif
 #endif /* not lint */
 
@@ -654,7 +654,7 @@ getauthinfo(fd)
 
        /* get result */
        p = &ibuf[0];
 
        /* get result */
        p = &ibuf[0];
-       nleft = sizeof(ibuf - 1);
+       nleft = sizeof ibuf - 1;
        while ((i = read(s, p, nleft)) > 0)
        {
                p += i;
        while ((i = read(s, p, nleft)) > 0)
        {
                p += i;