Changeset 222 for branches/samba-3.3.x/source/auth
- Timestamp:
- May 24, 2009, 7:45:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/auth/auth_util.c
r221 r222 790 790 791 791 /* 792 * Create an artificial NT token given just a username. (Initially in dended792 * Create an artificial NT token given just a username. (Initially intended 793 793 * for force user) 794 794 * … … 843 843 } 844 844 845 if (!sid_to_uid(&user_sid, uid)) {846 DEBUG(1, ("sid_to_uid for %s (%s) failed\n",847 username, sid_string_dbg(&user_sid)));848 goto done;849 }850 851 845 if (sid_check_is_in_our_domain(&user_sid)) { 852 846 bool ret; … … 905 899 906 900 unix_user: 901 902 if (!sid_to_uid(&user_sid, uid)) { 903 DEBUG(1, ("sid_to_uid for %s (%s) failed\n", 904 username, sid_string_dbg(&user_sid))); 905 goto done; 906 } 907 907 908 908 uid_to_unix_users_sid(*uid, &user_sid);
Note:
See TracChangeset
for help on using the changeset viewer.