mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
strtoul removed, strtol used instead
This commit is contained in:
parent
4ebd2c5140
commit
d717d58c11
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user