aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-02-01 22:27:17 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-02-01 22:27:17 +0000
commit191c6b97c84a4680eb04ff42a4d420eac0d8d8e8 (patch)
treee661ba8e2525b53b59e5b8cfd2318dd36ac345a8 /rcfile_y.y
parent9a9467cafe1c27290eac02c0a6bb6baa480a5096 (diff)
downloadfetchmail-191c6b97c84a4680eb04ff42a4d420eac0d8d8e8.tar.gz
fetchmail-191c6b97c84a4680eb04ff42a4d420eac0d8d8e8.tar.bz2
fetchmail-191c6b97c84a4680eb04ff42a4d420eac0d8d8e8.zip
Return of the dancing progress dots.
svn path=/trunk/; revision=2369
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index adf21428..a5e323d6 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -375,7 +375,7 @@ int prc_filecheck(const char *pathname, const flag securecheck)
if (errno == ENOENT)
return(PS_SUCCESS);
else {
- report(stderr, errno, "lstat: %s", pathname);
+ report(stderr, errno, "lstat: %s\n", pathname);
return(PS_IOERR);
}
}
@@ -423,7 +423,7 @@ int prc_parse_file (const char *pathname, const flag securecheck)
if (strcmp(pathname, "-") == 0)
yyin = stdin;
else if ((yyin = fopen(pathname,"r")) == (FILE *)NULL) {
- report(stderr, errno, "open: %s", pathname);
+ report(stderr, errno, "open: %s\n", pathname);
return(PS_IOERR);
}