Ignore:
Timestamp:
Mar 1, 2010, 3:05:48 PM (15 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3.x to 3.3.11

Location:
branches/samba-3.3.x/source/winbindd
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/winbindd/winbindd_cm.c

    r342 r411  
    16191619
    16201620        /* Internal connections never use the network. */
    1621         if (domain->internal) {
     1621        if (domain->internal || !winbindd_can_contact_domain(domain)) {
    16221622                domain->initialized = True;
    16231623                return NT_STATUS_OK;
     
    17471747                        domain->initialized = True;
    17481748
    1749                         if ( !winbindd_can_contact_domain( domain) )
    1750                                 domain->internal = True;
    1751                        
    17521749                        break;
    17531750                }               
  • branches/samba-3.3.x/source/winbindd/winbindd_domain.c

    r206 r411  
    2525#undef DBGC_CLASS
    2626#define DBGC_CLASS DBGC_WINBIND
    27 
    28 static const struct winbindd_child_dispatch_table domain_dispatch_table[];
    29 
    30 void setup_domain_child(struct winbindd_domain *domain,
    31                         struct winbindd_child *child)
    32 {
    33         setup_child(child, domain_dispatch_table,
    34                     "log.wb", domain->name);
    35 
    36         child->domain = domain;
    37 }
    3827
    3928static const struct winbindd_child_dispatch_table domain_dispatch_table[] = {
     
    118107        }
    119108};
     109
     110void setup_domain_child(struct winbindd_domain *domain,
     111                        struct winbindd_child *child)
     112{
     113        setup_child(child, domain_dispatch_table,
     114                    "log.wb", domain->name);
     115
     116        child->domain = domain;
     117}
  • branches/samba-3.3.x/source/winbindd/winbindd_idmap.c

    r206 r411  
    3939#define DBGC_CLASS DBGC_WINBIND
    4040
    41 static const struct winbindd_child_dispatch_table idmap_dispatch_table[];
    42 
    4341static struct winbindd_child static_idmap_child;
    44 
    45 void init_idmap_child(void)
    46 {
    47         setup_child(&static_idmap_child,
    48                     idmap_dispatch_table,
    49                     "log.winbindd", "idmap");
    50 }
    5142
    5243struct winbindd_child *idmap_child(void)
     
    565556        }
    566557};
     558
     559void init_idmap_child(void)
     560{
     561        setup_child(&static_idmap_child,
     562                    idmap_dispatch_table,
     563                    "log.winbindd", "idmap");
     564}
  • branches/samba-3.3.x/source/winbindd/winbindd_locator.c

    r206 r411  
    2828
    2929
    30 static const struct winbindd_child_dispatch_table locator_dispatch_table[];
    31 
    3230static struct winbindd_child static_locator_child;
    33 
    34 void init_locator_child(void)
    35 {
    36         setup_child(&static_locator_child,
    37                     locator_dispatch_table,
    38                     "log.winbindd", "locator");
    39 }
    4031
    4132struct winbindd_child *locator_child(void)
     
    165156        }
    166157};
     158
     159void init_locator_child(void)
     160{
     161        setup_child(&static_locator_child,
     162                    locator_dispatch_table,
     163                    "log.winbindd", "locator");
     164}
Note: See TracChangeset for help on using the changeset viewer.