MAXHOSTNAMELEN, not +1
authorderaadt <deraadt@openbsd.org>
Sun, 22 Dec 1996 02:59:53 +0000 (02:59 +0000)
committerderaadt <deraadt@openbsd.org>
Sun, 22 Dec 1996 02:59:53 +0000 (02:59 +0000)
sbin/shutdown/shutdown.c

index 35bc0fd..4c78e0c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: shutdown.c,v 1.5 1996/09/20 07:12:57 deraadt Exp $    */
+/*     $OpenBSD: shutdown.c,v 1.6 1996/12/22 02:59:53 deraadt Exp $    */
 /*     $NetBSD: shutdown.c,v 1.9 1995/03/18 15:01:09 cgd Exp $ */
 
 /*
@@ -44,7 +44,7 @@ static char copyright[] =
 #if 0
 static char sccsid[] = "@(#)shutdown.c 8.2 (Berkeley) 2/16/94";
 #else
-static char rcsid[] = "$OpenBSD: shutdown.c,v 1.5 1996/09/20 07:12:57 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: shutdown.c,v 1.6 1996/12/22 02:59:53 deraadt Exp $";
 #endif
 #endif /* not lint */
 
@@ -279,7 +279,7 @@ timewarn(timeleft)
        int timeleft;
 {
        static int first;
-       static char hostname[MAXHOSTNAMELEN + 1];
+       static char hostname[MAXHOSTNAMELEN];
        FILE *pf;
        char wcmd[MAXPATHLEN + 4];
        extern char **environ;