diff options
| author | Ben Kaduk <kaduk@mit.edu> | 2012-12-05 18:21:53 -0500 |
|---|---|---|
| committer | Ben Kaduk <kaduk@mit.edu> | 2012-12-05 18:22:44 -0500 |
| commit | de80646215b623b1ce16fe8a2c2db85bba531532 (patch) | |
| tree | 7191b5b9f8e3a6779d7480b7a4bd19bd419eced0 /src | |
| parent | eacf40bdc52ae3c43dad58429086c39a8ce4d395 (diff) | |
| download | krb5-de80646215b623b1ce16fe8a2c2db85bba531532.tar.gz krb5-de80646215b623b1ce16fe8a2c2db85bba531532.tar.xz krb5-de80646215b623b1ce16fe8a2c2db85bba531532.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/windows/version.rc | 2 |
1 files changed, 1 insertions, 1 deletions
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 "" |
