diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-04-07 08:47:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-04-07 08:47:33 +0000 |
commit | 24767db5c2e9df1780bde6f0110141f3f77d613b (patch) | |
tree | 4a9b015174fcd9f11bfe281d51df5603b11ea7a6 /fetchmail.c | |
parent | b0f26e5a18227599792aa6649615736572a2143f (diff) | |
download | fetchmail-24767db5c2e9df1780bde6f0110141f3f77d613b.tar.gz fetchmail-24767db5c2e9df1780bde6f0110141f3f77d613b.tar.bz2 fetchmail-24767db5c2e9df1780bde6f0110141f3f77d613b.zip |
Typo fix.
svn path=/trunk/; revision=2860
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index 99547745..86a471a9 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1708,11 +1708,11 @@ static void dump_params (struct runctl *runp, #endif if (ctl->server.plugin) - printf(_(" Server connections will be mode via plugin %s (--plugin %s).\n"), ctl->server.plugin, ctl->server.plugin); + printf(_(" Server connections will be made via plugin %s (--plugin %s).\n"), ctl->server.plugin, ctl->server.plugin); else if (outlevel >= O_VERBOSE) printf(_(" No plugin command specified.\n")); if (ctl->server.plugout) - printf(_(" Listener connections will be mode via plugout %s (--plugout %s).\n"), ctl->server.plugout, ctl->server.plugout); + printf(_(" Listener connections will be made via plugout %s (--plugout %s).\n"), ctl->server.plugout, ctl->server.plugout); else if (outlevel >= O_VERBOSE) printf(_(" No plugout command specified.\n")); |