X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fversion.c;h=04a2d07337f8d185c9bc41950e91d83d3ea681c1;hb=8487aee9abc86726a0669eab24fce8ecade8f22b;hp=839f5bdcaac2aae180b46c511bd85ebaaeaa3a52;hpb=f7b639017a889d802b26b61df6b3f1ac46c6f4f0;p=exim.git diff --git a/src/src/version.c b/src/src/version.c index 839f5bdca..04a2d0733 100644 --- a/src/src/version.c +++ b/src/src/version.c @@ -1,18 +1,15 @@ -/* $Cambridge: exim/src/src/version.c,v 1.3 2004/12/17 14:52:44 ph10 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2004 */ +/* 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.45" +#include "version.h" /* The header file cnumber.h contains a single line containing the @@ -41,7 +38,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';