X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=common-src%2Fversuff.c;h=03e6183d2c3d5f32baa2002d5aadf61fb9cd5e06;hb=2627875b7d18858bc1f9f7652811e4d8c15a23eb;hp=d55153e82bd510a26d641b3fe29f4143f0711570;hpb=1194fb66aa28d9929c3f2bef3cc6c1c3f40a60a4;p=debian%2Famanda diff --git a/common-src/versuff.c b/common-src/versuff.c index d55153e..03e6183 100644 --- a/common-src/versuff.c +++ b/common-src/versuff.c @@ -24,7 +24,7 @@ * file named AUTHORS, in the root directory of this distribution. */ /* - * $Id: versuff.c.in,v 1.11 2003/05/20 17:33:53 martinea Exp $ + * $Id: versuff.c.in,v 1.12 2006/05/25 01:47:12 johnfranks Exp $ * * provide amanda version number and suffix appended to program names */ @@ -32,22 +32,22 @@ #include "version.h" const int VERSION_MAJOR = 2; -const int VERSION_MINOR = 5; -const int VERSION_PATCH = 0; +const int VERSION_MINOR = 6; +const int VERSION_PATCH = 1; const char *const VERSION_COMMENT = ""; const char * -versionsuffix() +versionsuffix(void) { #ifdef USE_VERSION_SUFFIXES - return "-2.5.0"; + return "-2.6.1"; #else return ""; #endif } const char * -version() +version(void) { - return "2.5.0"; + return "2.6.1"; }