summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-03-03 07:59:54 +0000
committerache <ache@FreeBSD.org>1997-03-03 07:59:54 +0000
commit78407f0914803274187a7a3c3501d8bc38424168 (patch)
tree761cf4aa29834d719912417c68b49b46a2fe7970
parent09cbe4801b5c8212020b199ae46964370796cf7e (diff)
downloadFreeBSD-src-78407f0914803274187a7a3c3501d8bc38424168.zip
FreeBSD-src-78407f0914803274187a7a3c3501d8bc38424168.tar.gz
Back out MAXLOGNAME fix, Bruce points that copyinstr require NUL
-rw-r--r--games/battlestar/externs.h2
-rw-r--r--usr.bin/at/at.c4
-rw-r--r--usr.sbin/pw/pw_user.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/games/battlestar/externs.h b/games/battlestar/externs.h
index f47ca9f..2d85352 100644
--- a/games/battlestar/externs.h
+++ b/games/battlestar/externs.h
@@ -279,7 +279,7 @@ int wear[NUMOFWORDS];
char beenthere[NUMOFROOMS+1];
char injuries[NUMOFINJURIES];
-char uname[MAXLOGNAME+1];
+char uname[MAXLOGNAME];
struct wlist {
char *string;
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c
index 84e7dbd..07bf7ff 100644
--- a/usr.bin/at/at.c
+++ b/usr.bin/at/at.c
@@ -53,10 +53,10 @@
#include <locale.h>
#endif
-#if MAXLOGNAME > UT_NAMESIZE
+#if (MAXLOGNAME-1) > UT_NAMESIZE
#define LOGNAMESIZE UT_NAMESIZE
#else
-#define LOGNAMESIZE MAXLOGNAME
+#define LOGNAMESIZE (MAXLOGNAME-1)
#endif
/* Local headers */
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c
index faebb30..a5ea801 100644
--- a/usr.sbin/pw/pw_user.c
+++ b/usr.sbin/pw/pw_user.c
@@ -44,10 +44,10 @@
#include "bitmap.h"
#include "pwupd.h"
-#if MAXLOGNAME > UT_NAMESIZE
+#if (MAXLOGNAME-1) > UT_NAMESIZE
#define LOGNAMESIZE UT_NAMESIZE
#else
-#define LOGNAMESIZE MAXLOGNAME
+#define LOGNAMESIZE (MAXLOGNAME-1)
#endif
static int print_user(struct passwd * pwd, int pretty);
OpenPOWER on IntegriCloud