aboutsummaryrefslogtreecommitdiffstats
path: root/uid.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2007-07-24 15:10:22 +0000
committerMatthias Andree <matthias.andree@gmx.de>2007-07-24 15:10:22 +0000
commitc4910dd4a6891e5aeeb88f489a51c40d9ae21855 (patch)
tree8c2156860556e2dffeb9df0fc9bddde5551a1f06 /uid.c
parent06d467ca575d4fafe05f5e868bc7423dcc26747b (diff)
downloadfetchmail-c4910dd4a6891e5aeeb88f489a51c40d9ae21855.tar.gz
fetchmail-c4910dd4a6891e5aeeb88f489a51c40d9ae21855.tar.bz2
fetchmail-c4910dd4a6891e5aeeb88f489a51c40d9ae21855.zip
Document arcane SSL/TLS UI issue and require docs, Debian Bug#432618.
svn path=/branches/BRANCH_6-3/; revision=5117
Diffstat (limited to 'uid.c')
-rw-r--r--uid.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/uid.c b/uid.c
index 82bb4add..a4164b44 100644
--- a/uid.c
+++ b/uid.c
@@ -612,8 +612,10 @@ void write_saved_lists(struct query *hostlist, const char *idfile)
/* either nuke the file or write updated last-seen IDs */
if (!idcount && !scratchlist)
{
- if (outlevel >= O_DEBUG)
- report(stdout, GT_("Deleting fetchids file.\n"));
+ if (outlevel >= O_DEBUG) {
+ if (access(idfile, F_OK) == 0)
+ report(stdout, GT_("Deleting fetchids file.\n"));
+ }
if (unlink(idfile) && errno != ENOENT)
report(stderr, GT_("Error deleting %s: %s\n"), idfile, strerror(errno));
} else {