summaryrefslogtreecommitdiffstats
path: root/src/providers/proxy/proxy_id.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2011-09-29 20:00:58 +0200
committerStephen Gallagher <sgallagh@redhat.com>2011-10-03 10:48:37 -0400
commit95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec (patch)
tree5cf4c7c585dda5455555334d3c32ff56ddce86d2 /src/providers/proxy/proxy_id.c
parentc98298029c51fdbc727536fec7a27795184d04e4 (diff)
downloadsssd-95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec.tar.gz
sssd-95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec.tar.xz
sssd-95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec.zip
Use explicit base 10 for converting strings to integers
https://fedorahosted.org/sssd/ticket/1013
Diffstat (limited to 'src/providers/proxy/proxy_id.c')
-rw-r--r--src/providers/proxy/proxy_id.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/proxy/proxy_id.c b/src/providers/proxy/proxy_id.c
index ba45d7a41..242847594 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");