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:22:01 +0200
commit0b2e2888b1b68742e91a64bbec8540c7bfa3f179 (patch)
tree746fe527c71033b43538ca8a0f42b633ad886950 /src/util
parent6a281a49197ff76637bd6037692bb9569df8f2da (diff)
downloadsssd-0b2e2888b1b68742e91a64bbec8540c7bfa3f179.tar.gz
sssd-0b2e2888b1b68742e91a64bbec8540c7bfa3f179.tar.xz
sssd-0b2e2888b1b68742e91a64bbec8540c7bfa3f179.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));
}