From ecbd0932a92e4fd22f7c479789b09850b2900b2d Mon Sep 17 00:00:00 2001 From: Jay Lepreau Date: Fri, 6 Dec 1985 15:37:59 -0800 Subject: [PATCH] grow some buffers SCCS-vsn: bin/rmail/rmail.c 4.6 --- usr/src/bin/rmail/rmail.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/usr/src/bin/rmail/rmail.c b/usr/src/bin/rmail/rmail.c index 673de64d9c..7e027d36a1 100644 --- a/usr/src/bin/rmail/rmail.c +++ b/usr/src/bin/rmail/rmail.c @@ -1,5 +1,5 @@ #ifndef lint -static char sccsid[] = "@(#)rmail.c 4.5 (Berkeley) %G%"; +static char sccsid[] = "@(#)rmail.c 4.6 (Berkeley) %G%"; #endif /* @@ -31,11 +31,11 @@ main(argc, argv) char **argv; { FILE *out; /* output to sendmail */ - char lbuf[512]; /* one line of the message */ - char from[512]; /* accumulated path of sender */ - char ufrom[64]; /* user on remote system */ - char sys[64]; /* a system in path */ - char junk[512]; /* scratchpad */ + char lbuf[1024]; /* one line of the message */ + char from[512]; /* accumulated path of sender */ + char ufrom[512]; /* user on remote system */ + char sys[512]; /* a system in path */ + char junk[1024]; /* scratchpad */ char cmd[2000]; register char *cp; register char *uf; /* ptr into ufrom */ -- 2.20.1