1024 -> BUFSIZ

This commit is contained in:
Todd C. Miller
1995-04-10 19:07:54 +00:00
parent 6cb2afdadc
commit 27b183432b
2 changed files with 2 additions and 2 deletions

View File

@@ -413,7 +413,7 @@ static void send_mail()
char *mailer;
char *subject = MAILSUBJECT;
int fd[2];
char buf[MAXLOGLEN + 1024];
char buf[MAXLOGLEN + BUFSIZ];
#ifdef POSIX_SIGNALS
struct sigaction action;

View File

@@ -300,7 +300,7 @@ user : NAME {
typedef struct {
int type;
char name[1024];
char name[BUFSIZ];
} aliasinfo;
#define MOREALIASES (32)