diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 03:59:30 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 03:59:30 +0000 |
commit | 70f8bdddc40885f2a240c3ac3766fa34921a54cd (patch) | |
tree | 0bfe5f1cbfd935cb2781e3a51f7d1c55f25d9b02 /fetchmail.h | |
parent | 2b3208b5eddee20477ec6444fc5a48f172f2bd59 (diff) | |
download | fetchmail-70f8bdddc40885f2a240c3ac3766fa34921a54cd.tar.gz fetchmail-70f8bdddc40885f2a240c3ac3766fa34921a54cd.tar.bz2 fetchmail-70f8bdddc40885f2a240c3ac3766fa34921a54cd.zip |
Prevent buffer overun.
svn path=/trunk/; revision=133
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 0e0877b7..44dc2917 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -101,7 +101,7 @@ struct method char *exit_cmd; /* exit command */ }; -#define TAGLEN 5 +#define TAGLEN 6 extern char tag[TAGLEN]; /* controls the detail level of status/progress messages written to stderr */ |