X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/49e2c2f1dec29b4fee1b0c18b754431753c6a027..6545de78cb822ab5db97a2f16fe7a42cc9488bd8:/src/src/version.c diff --git a/src/src/version.c b/src/src/version.c index 436c3f032..ef994a893 100644 --- a/src/src/version.c +++ b/src/src/version.c @@ -1,18 +1,17 @@ -/* $Cambridge: exim/src/src/version.c,v 1.19 2006/12/21 09:27:07 ph10 Exp $ */ +/* $Cambridge: exim/src/src/version.c,v 1.29 2010/01/04 19:35:50 nm4 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2006 */ +/* Copyright (c) University of Cambridge 1995 - 2009 */ /* See the file NOTICE for conditions of use and distribution. */ /* Function for setting up the version string. */ #include "exim.h" - -#define THIS_VERSION "4.65" +#include "version.h" /* The header file cnumber.h contains a single line containing the @@ -41,7 +40,7 @@ sprintf() call is the gcc -Wall warns about a \0 in a format string. */ version_cnumber = cnumber_buffer; version_cnumber_format = US"%d\0<>"; sprintf(CS version_cnumber, CS version_cnumber_format, cnumber); -version_string = US THIS_VERSION "\0<>"; +version_string = US EXIM_VERSION_STR "\0<>"; Ustrcpy(today, __DATE__); if (today[4] == ' ') today[4] = '0';