diff options
| author | Colin Percival <cperciva@FreeBSD.org> | 2008-04-15 23:29:51 +0000 |
|---|---|---|
| committer | Colin Percival <cperciva@FreeBSD.org> | 2008-04-15 23:29:51 +0000 |
| commit | fc2841a92fa8f3813c887323d751e68433c1726f (patch) | |
| tree | 0e100dddcfe3c8c34820974abf65db736cc58e1b /lib/libfetch | |
| parent | 688e303c19b4f5710ea896c08c63aaa6085bd035 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch')
| -rw-r--r-- | lib/libfetch/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c index e8eebcbb10b9..d49336a90ced 100644 --- a/lib/libfetch/common.c +++ b/lib/libfetch/common.c @@ -655,7 +655,7 @@ fetch_read_word(FILE *f) { static char word[1024]; - if (fscanf(f, " %1024s ", word) != 1) + if (fscanf(f, " %1023s ", word) != 1) return (NULL); return (word); } |
