mirror of
https://github.com/samba-team/samba.git
synced 2025-08-30 17:49:30 +03:00
strtoul removed, strtol used instead
This commit is contained in:
@ -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",
|
||||
|
Reference in New Issue
Block a user