diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-01-14 12:56:01 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-01-14 12:56:01 +0000 |
commit | 92583cd8fffa622b7fb85c1c041036de03e793a6 (patch) | |
tree | 98cca04f75bbef9759f8cbaa5d7d6fb803b00d0f /netrc.h | |
parent | 366eb7b3a91d53282f0b1007913a55be236a322e (diff) | |
download | fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.tar.gz fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.tar.bz2 fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.zip |
netrc cleanup.
svn path=/trunk/; revision=3779
Diffstat (limited to 'netrc.h')
-rw-r--r-- | netrc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,8 +27,8 @@ typedef struct _netrc_entry { /* The exact host name given in the .netrc, NULL if default. */ char *host; - /* The name of the account. */ - char *account; + /* The login name of the user. */ + char *login; /* Password for the account (NULL, if none). */ char *password; |