Description: patch to allow compilation with hardening flags
Author: tony mancill <tmancill@debian.org>
Origin: vendor
Forwarded: no
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2012-07-09

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. 

--- a/msktconf.cpp
+++ b/msktconf.cpp
@@ -128,7 +128,7 @@
         switch_default_ccache(ccache_name);
         return true;
     } catch (KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("Authentication with keytab failed");
         return false;
     }
@@ -145,7 +145,7 @@
         switch_default_ccache(ccache_name);
         return true;
     } catch (KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("Authentication with password failed");
         return false;
     }
@@ -201,7 +201,7 @@
 
         return true;
     } catch(KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("User ticket cache was not valid.");
         return false;
     }
