diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2022-05-31 20:39:40 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2022-06-04 22:32:37 +0200 |
commit | c89909b0d4e3fc914045bc5bacf029699c1d2420 (patch) | |
tree | 2154702efff4a2a4c5418ae25ec4bd6e06a6f3a4 /netrc.h | |
parent | a6294bdb72c1a158cda906b611ad21d1198dad79 (diff) | |
download | fetchmail-c89909b0d4e3fc914045bc5bacf029699c1d2420.tar.gz fetchmail-c89909b0d4e3fc914045bc5bacf029699c1d2420.tar.bz2 fetchmail-c89909b0d4e3fc914045bc5bacf029699c1d2420.zip |
netrc: fix error routing and add I/O error checks
Diffstat (limited to 'netrc.h')
-rw-r--r-- | netrc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ typedef struct _netrc_entry { __BEGIN_DECLS /* Parse FILE as a .netrc file (as described in ftp(1)), and return a list of entries. NULL is returned if the file could not be - parsed. */ + parsed. Diagnostic messages are through report(), except for fopen() errors with ENOENT. */ netrc_entry *parse_netrc __P((char *file)); /* Return the netrc entry from LIST corresponding to HOST. NULL is |