From 7486dea9f5f7b2a6fbbacc6db740a82140b6377c Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 17 May 2013 17:36:38 +0200 Subject: Fixing critical format string issues. --missing arguments. --format '%s', but argument is integer. --wrong format string, examle: '%\n' --- src/db/sysdb_idmap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/db/sysdb_idmap.c') diff --git a/src/db/sysdb_idmap.c b/src/db/sysdb_idmap.c index 612a42aae..7b46ae66b 100644 --- a/src/db/sysdb_idmap.c +++ b/src/db/sysdb_idmap.c @@ -196,7 +196,8 @@ sysdb_idmap_store_mapping(struct sysdb_ctx *sysdb, if (slice_num != old_slice) { DEBUG(SSSDBG_FATAL_FAILURE, ("Detected attempt to change slice value for sid [%s] " - "This will break existing users. Refusing to perform.\n")); + "This will break existing users. Refusing to perform.\n", + dom_sid)); ret = EINVAL; goto done; } -- cgit