diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-30 18:03:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-30 18:03:51 +0000 |
commit | a6d47514f633deb1b0035af83fd454ea0b642bb8 (patch) | |
tree | f88bc0d1d7edc5590057b54240cda96bd7e8915f /fetchmail.c | |
parent | 206f35d175d7395d2cdabc060ab1b274fe9018d3 (diff) | |
download | fetchmail-a6d47514f633deb1b0035af83fd454ea0b642bb8.tar.gz fetchmail-a6d47514f633deb1b0035af83fd454ea0b642bb8.tar.bz2 fetchmail-a6d47514f633deb1b0035af83fd454ea0b642bb8.zip |
Change in version computation.
svn path=/trunk/; revision=2241
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index cafde674..7d368e1b 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -171,7 +171,7 @@ int main (int argc, char **argv) if (versioninfo) { - printf(_("This is fetchmail release %s"), RELEASE_ID); + printf(_("This is fetchmail release %s"), VERSION); #ifdef POP2_ENABLE printf("+POP2"); #endif /* POP2_ENABLE */ @@ -456,7 +456,7 @@ int main (int argc, char **argv) { if (!nodetach) daemonize(run.logfile, termhook); - error( 0, 0, _("starting fetchmail %s daemon "), RELEASE_ID); + error( 0, 0, _("starting fetchmail %s daemon "), VERSION); /* * We'll set up a handler for these when we're sleeping, @@ -1214,7 +1214,7 @@ static int query_host(struct query *ctl) time(&now); error(0, -1, _("fetchmail: %s querying %s (protocol %s) at %s"), - RELEASE_ID, + VERSION, ctl->server.pollname, showproto(ctl->server.protocol), ctime(&now)); } switch (ctl->server.protocol) { |