1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

s3:lib/netapi: avoid '//' comments

The compiler on openindiana doesn't like them.

metze
This commit is contained in:
Stefan Metzmacher 2011-10-08 07:21:25 +02:00
parent ee4f418288
commit 4ebd510abe
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ static NET_API_STATUS test_netgroupenum(const char *hostname,
status = NetGroupEnum(hostname,
level,
&buffer,
120, //(uint32_t)-1,
120, /*(uint32_t)-1, */
&entries_read,
&total_entries,
&resume_handle);

View File

@ -57,7 +57,7 @@ static NET_API_STATUS test_netuserenum(const char *hostname,
level,
FILTER_NORMAL_ACCOUNT,
&buffer,
120, //(uint32_t)-1,
120, /*(uint32_t)-1, */
&entries_read,
&total_entries,
&resume_handle);
@ -275,7 +275,7 @@ static NET_API_STATUS test_netusergetgroups(const char *hostname,
username,
level,
&buffer,
120, //(uint32_t)-1,
120, /*(uint32_t)-1, */
&entries_read,
&total_entries);
if (status == 0 || status == ERROR_MORE_DATA) {