diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-18 06:33:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-18 06:33:55 +0000 |
commit | 7f99efc49d9f9b10cb87461288348cefe84ba05d (patch) | |
tree | d58985df3292e1839e6339be1a5f935c44912325 /uid.c | |
parent | c03d5efe177b4937e17030e64313967803dcf5bf (diff) | |
download | fetchmail-7f99efc49d9f9b10cb87461288348cefe84ba05d.tar.gz fetchmail-7f99efc49d9f9b10cb87461288348cefe84ba05d.tar.bz2 fetchmail-7f99efc49d9f9b10cb87461288348cefe84ba05d.zip |
Help trace file writing.
svn path=/trunk/; revision=2760
Diffstat (limited to 'uid.c')
-rw-r--r-- | uid.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -454,6 +454,9 @@ void write_saved_lists(struct query *hostlist, const char *idfile) unlink(idfile); } else + { + if (outlevel >= O_DEBUG) + report(stdout, "Writing fetchids file.\n"); if ((tmpfp = fopen(idfile, "w")) != (FILE *)NULL) { for (ctl = hostlist; ctl; ctl = ctl->next) { for (idp = ctl->oldsaved; idp; idp = idp->next) @@ -466,6 +469,7 @@ void write_saved_lists(struct query *hostlist, const char *idfile) fputs(idp->id, tmpfp); fclose(tmpfp); } + } } #endif /* POP3_ENABLE */ |