1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

Fixup a few typos for Jerry.

Jeremy.
(This used to be commit 1e5fe87d75)
This commit is contained in:
Jeremy Allison
2003-04-21 23:23:24 +00:00
parent d2d6303a05
commit 530dc71732

View File

@ -201,8 +201,8 @@ int net_groupmap_add(int argc, const char **argv)
}
}
else if ( !StrnCaseCmp(argv[i], "sid", strlen("sid")) ) {
fstrcpy( sid_string, get_string_param( argv[i] ) );
if ( !sid_string[0] ) {
fstrcpy( string_sid, get_string_param( argv[i] ) );
if ( !string_sid[0] ) {
d_printf("must supply a SID\n");
return -1;
}
@ -237,13 +237,13 @@ int net_groupmap_add(int argc, const char **argv)
}
}
if ( !ntgroup[0] || (!rid && !sid_string[0]} || sid_type==SID_NAME_UNKNOWN ) {
if ( !ntgroup[0] || (!rid && !string_sid[0]) || sid_type==SID_NAME_UNKNOWN ) {
d_printf("Usage: net groupmap add {rid=<int>|sid=<string>} name=<string>| type=<domain|local|builtin> [comment=<string>]\n");
return -1;
}
/* append the rid to our own domain/machine SID if we don't have a full SID */
if ( !sid_string[0] ) {
if ( !string_sid[0] ) {
sid_copy(&sid, get_global_sam_sid());
sid_append_rid(&sid, rid);
sid_to_string(string_sid, &sid);