search for: len_user_name

Displaying 1 result from an estimated 1 matches for "len_user_name".

Did you mean: in_user_name
2003 Jul 03
0
patch to fix silly bug in 3.0.0beta2
...space-delimited sids */ unsigned int i; int num_other_sids = 0; + char *username; NTTIME logon_time, logoff_time, kickoff_time, pass_last_set_time, pass_can_change_time, @@ -1294,7 +1295,21 @@ int len_logon_srv = strlen(logon_srv); int len_logon_dom = strlen(logon_dom); - len_user_name = strlen(user_name ); + + /* do some cleanup on the user name here to deal with users from a + trusted domain logging onto a client in our domain. If we are running + winbindd, the trusted users will be of the form DOMAIN\user so strip + out the domain portion. I noticed then whe...