1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

another strequal() == 0 fix

(This used to be commit 464b410734)
This commit is contained in:
Gerald Carter 2003-12-01 19:59:25 +00:00
parent 951e1aa851
commit 70e2f0944a

View File

@ -292,7 +292,7 @@ BOOL map_name_to_wellknown_sid(DOM_SID *sid, enum SID_NAME_USE *use, const char
continue;
for (j=0; users[j].known_user_name != NULL; j++) {
if (strequal(users[j].known_user_name, name) == 0) {
if ( strequal(users[j].known_user_name, name) ) {
sid_copy(sid, sid_name_map[i].sid);
sid_append_rid(sid, users[j].rid);
*use = users[j].sid_name_use;