From 69c6f16e31d0adfc7efb077e09afbb8ff5fb2b0f Mon Sep 17 00:00:00 2001 From: "Gerald (Jerry) Carter" Date: Sun, 21 Oct 2007 12:32:06 -0500 Subject: Correct VERSION and version.c to use SAMBA_VERSION_VENDOR_PATCH which is used by mkversion.sh. (This used to be commit a62c7f9350322ab435244eafe6053fd5ee618973) --- source3/lib/version.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/version.c b/source3/lib/version.c index cee06fc585..ca334a27d9 100644 --- a/source3/lib/version.c +++ b/source3/lib/version.c @@ -27,7 +27,7 @@ const char *samba_version_string(void) #else static fstring samba_version; static bool init_samba_version; -#ifdef SAMBA_VENDOR_PATCH +#ifdef SAMBA_VERSION_VENDOR_PATCH fstring tmp_version; size_t remaining; #endif @@ -39,9 +39,9 @@ const char *samba_version_string(void) SAMBA_VERSION_OFFICIAL_STRING, SAMBA_VERSION_VENDOR_SUFFIX); -#ifdef SAMBA_VENDOR_PATCH +#ifdef SAMBA_VERSION_VENDOR_PATCH remaining = sizeof(samba_version)-strlen(samba_version); - snprintf( tmp_version, sizeof(tmp_version), "-%d", SAMBA_VENDOR_PATCH ); + snprintf( tmp_version, sizeof(tmp_version), "-%d", SAMBA_VERSION_VENDOR_PATCH ); strlcat( samba_version, tmp_version, remaining-1 ); #endif -- cgit