aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-12-25 11:22:20 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-12-25 11:22:20 +0000
commit682a083355c678aa74d238b3d2fc3986b4edcacb (patch)
treed002ec524a73e8aef97ec73dd9af75d27e95811c /fetchmail.c
parent481e6f7b842af9e5065411e9c8846738052b8631 (diff)
downloadfetchmail-682a083355c678aa74d238b3d2fc3986b4edcacb.tar.gz
fetchmail-682a083355c678aa74d238b3d2fc3986b4edcacb.tar.bz2
fetchmail-682a083355c678aa74d238b3d2fc3986b4edcacb.zip
Slight message improvements.
svn path=/trunk/; revision=693
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/fetchmail.c b/fetchmail.c
index bea98e7e..61bafc4c 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -169,13 +169,13 @@ int main (int argc, char **argv)
printf("No SMTP message batch limit.\n");
#ifdef linux
if (interface)
- printf("TCP/IP interface requirements for %s.\n", interface);
+ printf("TCP/IP interface requirements are %s.\n", interface);
else if (outlevel == O_VERBOSE)
- printf("No TCP/IP interface requirements specified\n");
+ printf("No TCP/IP interface requirements specified.\n");
if (monitor)
printf("Polling loop will monitor %s.\n", monitor);
else if (outlevel == O_VERBOSE)
- printf("No monitor interface specified\n");
+ printf("No monitor interface specified.\n");
#endif
for (ctl = querylist; ctl; ctl = ctl->next) {
if (ctl->active && !(implicitmode && ctl->skip))
@@ -183,8 +183,7 @@ int main (int argc, char **argv)
}
if (querylist == NULL)
(void) fprintf(stderr,
- "No mailservers set up -- perhaps %s is missing?\n",
- rcfile);
+ "No mailservers set up -- perhaps %s is missing?\n", rcfile);
exit(0);
}
else if (!quitmode && querylist == NULL) {