From de80646215b623b1ce16fe8a2c2db85bba531532 Mon Sep 17 00:00:00 2001 From: Ben Kaduk Date: Wed, 5 Dec 2012 18:21:53 -0500 Subject: [PATCH] Fix typo for windows versions We omit the patchlevel if it is zero, but the check whether the patchlevel was zero was checking the wrong variable, and thus always succeeding. ticket: 7481 (new) queue: kfw tags: pullup target_version: 1.10.4 --- src/windows/version.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/version.rc b/src/windows/version.rc index d2c341d37e..275867f3f2 100644 --- a/src/windows/version.rc +++ b/src/windows/version.rc @@ -12,7 +12,7 @@ #define MAJOR_MINOR STR(KRB5_MAJOR_RELEASE) "." STR(KRB5_MINOR_RELEASE) -#if KRB5_PATCH_LEVEL != 0 +#if KRB5_PATCHLEVEL != 0 #define MAYBE_PATCH "." STR(KRB5_PATCHLEVEL) #else #define MAYBE_PATCH "" -- 2.47.2