aboutsummaryrefslogtreecommitdiffstats
path: root/netrc.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-09-29 23:20:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-09-29 23:20:24 +0000
commitb5e4dc5abc12941cb0695e4d69d5ac2a2f21406f (patch)
treeb7c796c1468a17c2da2f1fb4284601145cd9a356 /netrc.c
parent9e818012346fbee36ba481866b3d0005ac6816ea (diff)
downloadfetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.tar.gz
fetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.tar.bz2
fetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.zip
-Wall changes.
svn path=/trunk/; revision=2626
Diffstat (limited to 'netrc.c')
-rw-r--r--netrc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/netrc.c b/netrc.c
index e275c9d3..70f3361d 100644
--- a/netrc.c
+++ b/netrc.c
@@ -114,10 +114,12 @@ parse_netrc (file)
/* If the line is empty... */
if (!*p)
+ {
if (last_token == tok_macdef) /* end of macro */
last_token = tok_nothing;
else
continue; /* otherwise ignore it */
+ }
/* If we are defining macros, then skip parsing the line. */
while (*p && last_token != tok_macdef)