diff options
author | Tim Potter <tpot@samba.org> | 2001-10-21 07:01:01 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-10-21 07:01:01 +0000 |
commit | d50005d4c118ae32d1ddbdee4feec479db4682b9 (patch) | |
tree | 2b1b3f7e9f6a5d255aaf31ec9667b85a2d6107d6 | |
parent | 2472ecf7fc510115489baf0a888b511446b9c1fd (diff) | |
download | samba-d50005d4c118ae32d1ddbdee4feec479db4682b9.tar.gz samba-d50005d4c118ae32d1ddbdee4feec479db4682b9.tar.xz samba-d50005d4c118ae32d1ddbdee4feec479db4682b9.zip |
Fix for fussy Solaris compiler.
-rw-r--r-- | source/nsswitch/winbindd_group.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/nsswitch/winbindd_group.c b/source/nsswitch/winbindd_group.c index 2dbc5ded493..092651c9a7a 100644 --- a/source/nsswitch/winbindd_group.c +++ b/source/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 */ |