~ubuntu-branches/ubuntu/lucid/samba/lucid-proposed

« back to all changes in this revision

Viewing changes to source/nsswitch/winbindd_util.c

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-07-21 17:53:23 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050721175323-m3oh6aoigywohfnq
Tags: 3.0.14a-6ubuntu1
Resynchronise with Debian, resolving merge conflicts (#12360)

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
                sid_copy(&domain->sid, sid);
168
168
        }
169
169
        
170
 
        DEBUG(3,("add_trusted_domain: %s is an %s %s domain\n", domain->name,
171
 
                 domain->active_directory ? "ADS" : "NT4", 
172
 
                 domain->native_mode ? "native mode" : 
173
 
                 ((domain->active_directory && !domain->native_mode) ? "mixed mode" : "")));
174
 
 
175
170
        /* Link to domain list */
176
171
        DLIST_ADD(_domain_list, domain);
177
172
        
641
636
*/
642
637
void fill_domain_username(fstring name, const char *domain, const char *user)
643
638
{
644
 
        strlower_m( name );
 
639
        strlower_m( user );
645
640
 
646
641
        if (assume_domain(domain)) {
647
642
                strlcpy(name, user, sizeof(fstring));