From 95cc95749a5e783f2b5d2124d783f85820baf937 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 17 May 2012 13:54:29 -0400 Subject: Always use positional arguments in translatable strings https://fedorahosted.org/sssd/ticket/1336 --- src/tools/sss_groupmod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/sss_groupmod.c') diff --git a/src/tools/sss_groupmod.c b/src/tools/sss_groupmod.c index 47134aed..abab4f57 100644 --- a/src/tools/sss_groupmod.c +++ b/src/tools/sss_groupmod.c @@ -152,7 +152,7 @@ int main(int argc, const char **argv) /* Check group names in the LOCAL domain */ ret = check_group_names(tctx, tctx->octx->addgroups, &badgroup); if (ret != EOK) { - ERROR("Cannot find group %s in local domain, " + ERROR("Cannot find group %1$s in local domain, " "only groups in local domain are allowed\n", badgroup); ret = EXIT_FAILURE; goto fini; @@ -179,7 +179,7 @@ int main(int argc, const char **argv) /* Check group names in the LOCAL domain */ ret = check_group_names(tctx, tctx->octx->rmgroups, &badgroup); if (ret != EOK) { - ERROR("Cannot find group %s in local domain, " + ERROR("Cannot find group %1$s in local domain, " "only groups in local domain are allowed\n", badgroup); ret = EXIT_FAILURE; goto fini; -- cgit