From 6d3a0f2fe2d3302e08147213a0769c6b2bf38a5a Mon Sep 17 00:00:00 2001 From: "Kurt A. Schoens" Date: Fri, 17 Oct 1980 08:37:48 -0800 Subject: [PATCH] user name maximum size changed to PATHNAME from 8 in anticipation of larger user names in our system SCCS-vsn: usr.bin/mail/temp.c 1.2 --- usr/src/usr.bin/mail/temp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.bin/mail/temp.c b/usr/src/usr.bin/mail/temp.c index 9f9f24a37c..bbba26e3e4 100644 --- a/usr/src/usr.bin/mail/temp.c +++ b/usr/src/usr.bin/mail/temp.c @@ -8,7 +8,7 @@ * Give names to all the temporary files that we will need. */ -static char *SccsId = "@(#)temp.c 1.1 %G%"; +static char *SccsId = "@(#)temp.c 1.2 %G%"; char tempMail[14]; char tempQuit[14]; @@ -20,7 +20,7 @@ char tempMesg[14]; tinit() { register char *cp, *cp2; - char uname[9]; + char uname[PATHSIZE]; register int err = 0; register int pid; -- 2.20.1