s3:lib/netapi: avoid '//' comments
authorStefan Metzmacher <metze@samba.org>
Sat, 8 Oct 2011 05:21:25 +0000 (07:21 +0200)
committerStefan Metzmacher <metze@samba.org>
Sat, 8 Oct 2011 05:24:13 +0000 (07:24 +0200)
The compiler on openindiana doesn't like them.

metze

source3/lib/netapi/tests/netgroup.c
source3/lib/netapi/tests/netuser.c

index e43520ad1ae39f300ed5e73d35b8f2717fe59350..c872087cffd3384cba0fa35f5739ac109a5d7f3d 100644 (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);
index 41f794bf340b307b017a7f9f5b2777788dec425c..beeeb342f4491b0d29006bff710ba31eb5c07b2c 100644 (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) {