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

fix and if () that should be an 'else if()'

(This used to be commit b110c499fa2a483ee82dc471aff8b6d93f6a88cc)
This commit is contained in:
Gerald Carter 2003-04-25 02:26:53 +00:00
parent cc5121f9e5
commit e4e1bface8

View File

@ -453,7 +453,7 @@ int net_groupmap_delete(int argc, const char **argv)
return -1;
}
}
if ( !StrnCaseCmp(argv[i], "sid", strlen("sid")) ) {
else if ( !StrnCaseCmp(argv[i], "sid", strlen("sid")) ) {
fstrcpy( sid_string, get_string_param( argv[i] ) );
if ( !sid_string[0] ) {
d_printf("must supply a SID\n");