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. 

--- msktutil-0.4.1.orig/msktconf.cpp
+++ msktutil-0.4.1/msktconf.cpp
@@ -113,7 +113,7 @@ bool try_machine_keytab_princ(msktutil_f
         switch_default_ccache(ccache_name);
         return true;
     } catch (KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("Authentication with keytab failed");
         return false;
     }
@@ -130,7 +130,7 @@ bool try_machine_password(msktutil_flags
         switch_default_ccache(ccache_name);
         return true;
     } catch (KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("Authentication with password failed");
         return false;
     }
@@ -145,7 +145,7 @@ bool try_user_creds() {
 
         return true;
     } catch(KRB5Exception &e) {
-        VERBOSE(e.what());
+        VERBOSE("%s", e.what());
         VERBOSE("User ticket cache was not valid.");
         return false;
     }
