From 56d8ed48a94b558ad442e38c3d1925c4810dc508 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 14 Jul 2008 12:38:28 -0700 Subject: [PATCH] Add fix from Simo for bug #5540 - missing code to substitute %u. Make this the same as other uses. Jeremy. --- source/groupdb/mapping.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/groupdb/mapping.c b/source/groupdb/mapping.c index ce66bfa64fa..b952cda5230 100644 --- a/source/groupdb/mapping.c +++ b/source/groupdb/mapping.c @@ -297,9 +297,12 @@ int smb_set_primary_group(const char *unix_group, const char* unix_user) return -1; } add_script = talloc_all_string_sub(ctx, - add_script, - "%g", - unix_group); + add_script, "%g", unix_group); + if (!add_script) { + return -1; + } + add_script = talloc_string_sub(ctx, + add_script, "%u", unix_user); if (!add_script) { return -1; } -- 2.34.1