From 95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 29 Sep 2011 20:00:58 +0200 Subject: Use explicit base 10 for converting strings to integers https://fedorahosted.org/sssd/ticket/1013 --- src/providers/proxy/proxy_id.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/providers/proxy') diff --git a/src/providers/proxy/proxy_id.c b/src/providers/proxy/proxy_id.c index ba45d7a4..24284759 100644 --- a/src/providers/proxy/proxy_id.c +++ b/src/providers/proxy/proxy_id.c @@ -1080,7 +1080,7 @@ void proxy_get_account_info(struct be_req *breq) break; case BE_FILTER_IDNUM: - uid = (uid_t) strtouint32(ar->filter_value, &endptr, 0); + uid = (uid_t) strtouint32(ar->filter_value, &endptr, 10); if (errno || *endptr || (ar->filter_value == endptr)) { return proxy_reply(breq, DP_ERR_FATAL, EINVAL, "Invalid attr type"); @@ -1102,7 +1102,7 @@ void proxy_get_account_info(struct be_req *breq) ret = get_gr_name(breq, ctx, sysdb, domain, ar->filter_value); break; case BE_FILTER_IDNUM: - gid = (gid_t) strtouint32(ar->filter_value, &endptr, 0); + gid = (gid_t) strtouint32(ar->filter_value, &endptr, 10); if (errno || *endptr || (ar->filter_value == endptr)) { return proxy_reply(breq, DP_ERR_FATAL, EINVAL, "Invalid attr type"); -- cgit