From 4865debe85a0e22692ce61ab5438b651fd91ba92 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Fri, 16 Oct 1998 22:01:57 +0000 Subject: strtoul removed, strtol used instead (This used to be commit d717d58c115fc5cf687af098100cf5adc0265afc) --- source3/rpcclient/cmd_wkssvc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpcclient') diff --git a/source3/rpcclient/cmd_wkssvc.c b/source3/rpcclient/cmd_wkssvc.c index 0093fbf7c8..ee1e9748a5 100644 --- a/source3/rpcclient/cmd_wkssvc.c +++ b/source3/rpcclient/cmd_wkssvc.c @@ -58,7 +58,7 @@ void cmd_wks_query_info(struct client_info *info) if (next_token(NULL, tmp, NULL, sizeof(tmp))) { - info_level = strtoul(tmp, (char**)NULL, 10); + info_level = (uint32)strtol(tmp, (char**)NULL, 10); } DEBUG(4,("cmd_wks_query_info: server:%s info level: %d\n", -- cgit