From c52e6db8a2d5ef56cac59315f16f70eb9624b5d7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 14 Nov 2010 15:15:52 +0100 Subject: s3: string_to_sid does thorough syntax checking Autobuild-User: Volker Lendecke Autobuild-Date: Sun Nov 14 14:07:29 UTC 2010 on sn-devel-104 --- source3/utils/smbcquotas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils/smbcquotas.c') diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c index 6353272d82..63ea269cb5 100644 --- a/source3/utils/smbcquotas.c +++ b/source3/utils/smbcquotas.c @@ -117,8 +117,8 @@ static bool StringToSid(struct dom_sid *sid, const char *str) struct dom_sid *sids = NULL; bool result = True; - if (strncmp(str, "S-", 2) == 0) { - return string_to_sid(sid, str); + if (string_to_sid(sid, str)) { + return true; } if (!cli_open_policy_hnd() || -- cgit