diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 05:09:40 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 05:09:40 +0000 |
commit | 813e9e8ffad98b274a8aa1c31fcce76b44ad192e (patch) | |
tree | 4beffd92b2456ee5cfe9e58b7143e3140094881a /report.c | |
parent | 3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e (diff) | |
download | fetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.tar.gz fetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.tar.bz2 fetchmail-813e9e8ffad98b274a8aa1c31fcce76b44ad192e.zip |
error -> report, third stage.
svn path=/trunk/; revision=2330
Diffstat (limited to 'report.c')
-rw-r--r-- | report.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -216,7 +216,7 @@ report (FILE *errfp, errnum, message, va_alist) fprintf (errfp, message, a1, a2, a3, a4, a5, a6, a7, a8); #endif - if (errnum && errnum != -1) { + if (errnum) { char *tmps = strerror(errnum); if (tmps) { fprintf (errfp, ": %s", tmps); |