diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-09 23:27:59 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-09 23:27:59 +0000 |
commit | 317f026bdb1bd147ab2617b188c0fb21776b090d (patch) | |
tree | 3a318fdbe8ef0dbd50125ba658d15fa1a96198c2 | |
parent | 63e95dfd487fcf373edff8df36d906b50f5c19c7 (diff) | |
download | fetchmail-317f026bdb1bd147ab2617b188c0fb21776b090d.tar.gz fetchmail-317f026bdb1bd147ab2617b188c0fb21776b090d.tar.bz2 fetchmail-317f026bdb1bd147ab2617b188c0fb21776b090d.zip |
Better error messages.
svn path=/trunk/; revision=527
-rw-r--r-- | driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -517,11 +517,11 @@ struct query *ctl; /* query control record */ char errhd[USERNAMELEN + POPBUFSIZE], *errmsg; errmsg = errhd; - (void) strcpy(errhd, "X-Fetchmail-Error: "); + (void) strcpy(errhd, "X-Fetchmail-Warning: "); #ifdef HAVE_RES_SEARCH if (no_local_matches) { - strcat(errhd, "no declared local names matched recipient addresses"); + strcat(errhd, "no recipient addresses matched declared local names"); if (bad_addresses) strcat(errhd, "; "); } |