diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-25 12:46:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-25 12:46:48 +0000 |
commit | f7aef23b0c18a1ee4724f9e10984427cdee07c5d (patch) | |
tree | e3ebb88d46008b4c42dd9309849928c89aca9620 /netrc.c | |
parent | 9a8c11c62a4428be71cd854a6a804f055b8f7cbf (diff) | |
download | fetchmail-f7aef23b0c18a1ee4724f9e10984427cdee07c5d.tar.gz fetchmail-f7aef23b0c18a1ee4724f9e10984427cdee07c5d.tar.bz2 fetchmail-f7aef23b0c18a1ee4724f9e10984427cdee07c5d.zip |
Allow either `user' or `login'.
svn path=/trunk/; revision=1182
Diffstat (limited to 'netrc.c')
-rw-r--r-- | netrc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -220,6 +220,9 @@ parse_netrc (file) else if (!strcmp (tok, "login")) last_token = tok_login; + else if (!strcmp (tok, "user")) + last_token = tok_login; + else if (!strcmp (tok, "macdef")) last_token = tok_macdef; |