]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix typo for windows versions
authorBen Kaduk <kaduk@mit.edu>
Wed, 5 Dec 2012 23:21:53 +0000 (18:21 -0500)
committerBen Kaduk <kaduk@mit.edu>
Wed, 5 Dec 2012 23:22:44 +0000 (18:22 -0500)
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

index d2c341d37e5537840cd22094d68a1f3313d77b7e..275867f3f2716b0a398310dcf34cb790fcd4e37b 100644 (file)
@@ -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 ""