Changeset 599 for trunk/server/source3/param
- Timestamp:
- Jul 6, 2011, 8:21:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/param/loadparm.c
r596 r599 326 326 bool bClientPlaintextAuth; 327 327 bool bClientUseSpnego; 328 bool client_use_spnego_principal; 328 329 bool bDebugPrefixTimestamp; 329 330 bool bDebugHiresTimestamp; … … 1396 1397 }, 1397 1398 { 1399 .label = "client use spnego principal", 1400 .type = P_BOOL, 1401 .p_class = P_GLOBAL, 1402 .ptr = &Globals.client_use_spnego_principal, 1403 .special = NULL, 1404 .enum_list = NULL, 1405 .flags = FLAG_ADVANCED, 1406 }, 1407 { 1398 1408 .label = "username", 1399 1409 .type = P_STRING, … … 5577 5587 FN_GLOBAL_BOOL(lp_use_spnego, &Globals.bUseSpnego) 5578 5588 FN_GLOBAL_BOOL(lp_client_use_spnego, &Globals.bClientUseSpnego) 5589 FN_GLOBAL_BOOL(lp_client_use_spnego_principal, &Globals.client_use_spnego_principal) 5579 5590 FN_GLOBAL_BOOL(lp_hostname_lookups, &Globals.bHostnameLookups) 5580 5591 FN_LOCAL_PARM_BOOL(lp_change_notify, bChangeNotify)
Note:
See TracChangeset
for help on using the changeset viewer.