Changeset 738 for branches/samba-3.5.x/source3/winbindd/idmap.c
- Timestamp:
- Nov 12, 2012, 7:10:02 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/winbindd/idmap.c
r596 r738 28 28 29 29 static_decl_idmap; 30 31 static void idmap_init(void) 32 { 33 static bool initialized; 34 35 if (initialized) { 36 return; 37 } 38 39 DEBUG(10, ("idmap_init(): calling static_init_idmap\n")); 40 41 static_init_idmap; 42 43 initialized = true; 44 } 30 45 31 46 /** … … 347 362 char *params; 348 363 349 DEBUG(10, ("idmap_init_default_domain: calling static_init_idmap\n")); 350 351 static_init_idmap; 364 idmap_init(); 352 365 353 366 if (!parse_idmap_module(talloc_tos(), lp_idmap_backend(), &modulename, … … 547 560 NTSTATUS ret = NT_STATUS_NO_MEMORY;; 548 561 549 static_init_idmap;562 idmap_init(); 550 563 551 564 if (idmap_alloc_ctx != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.