summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-07-17 16:43:16 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-07-19 10:23:30 +0200
commitf9452edcd46835aae449185e9a5d95676f797bbc (patch)
tree5a2d863a640af2aff76aaa3a9f6be96c5fcb8c02 /src/util
parentaf743f0c29b066aed31e30a452c99c39bc2da98b (diff)
downloadsssd-f9452edcd46835aae449185e9a5d95676f797bbc.tar.gz
sssd-f9452edcd46835aae449185e9a5d95676f797bbc.tar.xz
sssd-f9452edcd46835aae449185e9a5d95676f797bbc.zip
Fix clang format string warning.
warning: format string is not a string literal (potentially insecure) [-Wformat-security]
Diffstat (limited to 'src/util')
-rw-r--r--src/util/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/debug.c b/src/util/debug.c
index 3bf5e75af..324f0daeb 100644
--- a/src/util/debug.c
+++ b/src/util/debug.c
@@ -274,5 +274,5 @@ int rotate_debug_files(void)
void talloc_log_fn(const char *message)
{
- DEBUG(SSSDBG_FATAL_FAILURE, (message));
+ DEBUG(SSSDBG_FATAL_FAILURE, ("%s", message));
}