user name maximum size changed to PATHNAME from 8 in anticipation
authorKurt A. Schoens <kas@ucbvax.Berkeley.EDU>
Fri, 17 Oct 1980 16:37:48 +0000 (08:37 -0800)
committerKurt A. Schoens <kas@ucbvax.Berkeley.EDU>
Fri, 17 Oct 1980 16:37:48 +0000 (08:37 -0800)
of larger user names in our system

SCCS-vsn: usr.bin/mail/temp.c 1.2

usr/src/usr.bin/mail/temp.c

index 9f9f24a..bbba26e 100644 (file)
@@ -8,7 +8,7 @@
  * Give names to all the temporary files that we will need.
  */
 
  * 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];
 
 char   tempMail[14];
 char   tempQuit[14];
@@ -20,7 +20,7 @@ char  tempMesg[14];
 tinit()
 {
        register char *cp, *cp2;
 tinit()
 {
        register char *cp, *cp2;
-       char uname[9];
+       char uname[PATHSIZE];
        register int err = 0;
        register int pid;
 
        register int err = 0;
        register int pid;