summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-10-21 07:01:01 +0000
committerTim Potter <tpot@samba.org>2001-10-21 07:01:01 +0000
commite68daea2bd6e05b2faf8e61e478a876f49cd77ee (patch)
treed0035eb624babb8adb221112dc1d676f9e71b61a
parent51bc5f128c870336517af9a36b5f49d83b160e45 (diff)
downloadsamba-e68daea2bd6e05b2faf8e61e478a876f49cd77ee.tar.gz
samba-e68daea2bd6e05b2faf8e61e478a876f49cd77ee.tar.bz2
samba-e68daea2bd6e05b2faf8e61e478a876f49cd77ee.zip
Fix for fussy Solaris compiler.
(This used to be commit d50005d4c118ae32d1ddbdee4feec479db4682b9)
-rw-r--r--source3/nsswitch/winbindd_group.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c
index 2dbc5ded49..092651c9a7 100644
--- a/source3/nsswitch/winbindd_group.c
+++ b/source3/nsswitch/winbindd_group.c
@@ -802,7 +802,7 @@ enum winbindd_result winbindd_list_groups(struct winbindd_cli_state *state)
/* skip remainder of loop if we idn;t retrieve any groups */
if (num_domain_entries == 0)
- goto next_group;
+ continue;
/* setup the groups struct to contain all the groups
retrieved for this domain */
@@ -849,8 +849,6 @@ enum winbindd_result winbindd_list_groups(struct winbindd_cli_state *state)
extra_data[extra_data_len++] = ',';
}
-
- next_group:
}
/* Assign extra_data fields in response structure */