From: Jim McDonough Date: Wed, 20 Sep 2006 00:02:51 +0000 (+0000) Subject: r18702: re-enable non-decimal specification of rid X-Git-Tag: samba-4.0.0alpha6~801^2~7545 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=47bb2e183961c7b9726002c6747ec3289898d043;p=samba.git r18702: re-enable non-decimal specification of rid (This used to be commit f3ff07404650e4b9846367ba981764b1a879bca9) --- diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 1d1142e3803..6f4d027cca9 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -342,14 +342,14 @@ static NTSTATUS cmd_samr_query_user(struct rpc_pipe_client *cli, uint32 access_mask = MAXIMUM_ALLOWED_ACCESS; SAM_USERINFO_CTR *user_ctr; fstring server; - uint32 user_rid; + uint32 user_rid = 0; if ((argc < 2) || (argc > 4)) { printf("Usage: %s rid [info level] [access mask] \n", argv[0]); return NT_STATUS_OK; } - user_rid = strtoul(argv[1], NULL, 10); + sscanf(argv[1], "%i", &user_rid); if (argc > 2) sscanf(argv[2], "%i", &info_level);