diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-12-01 19:29:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-12-01 19:29:53 +0000 |
commit | 96701cc78b59b8fdc6816e58d24d96d3f27e9ae4 (patch) | |
tree | 8cdf7ce68f8f13d6988d6241266fa3f1ed4da1cc /netrc.c | |
parent | f20e0dc3fb887fb41ab7fb22b435b2ef34ce62b9 (diff) | |
download | fetchmail-96701cc78b59b8fdc6816e58d24d96d3f27e9ae4.tar.gz fetchmail-96701cc78b59b8fdc6816e58d24d96d3f27e9ae4.tar.bz2 fetchmail-96701cc78b59b8fdc6816e58d24d96d3f27e9ae4.zip |
Bug in FAQ item R5 fixed.
svn path=/trunk/; revision=2249
Diffstat (limited to 'netrc.c')
-rw-r--r-- | netrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -119,7 +119,7 @@ parse_netrc (file) /* Strip trailing CRLF */ p = buf + strlen(buf) - 1; - while (*p && isspace(*p)) + while ((p > buf) && *p && isspace(*p)) *p-- = '\0'; /* Parse the line. */ |