diff options
| -rw-r--r-- | lib/param/param_functions.c | 2 | ||||
| -rw-r--r-- | lib/param/param_table.c | 2 | ||||
| -rw-r--r-- | source3/param/loadparm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 9f2b2552eb..642214264e 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -151,7 +151,7 @@ FN_LOCAL_PARM_CHAR(magicchar, magicchar) FN_LOCAL_STRING(cups_options, cups_options) FN_LOCAL_PARM_BOOL(change_notify, change_notify) FN_LOCAL_PARM_BOOL(kernel_change_notify, kernel_change_notify) -FN_LOCAL_BOOL(durable_handles, bDurableHandles) +FN_LOCAL_BOOL(durable_handles, durable_handles) FN_GLOBAL_BOOL(allow_insecure_widelinks, bAllowInsecureWidelinks) FN_GLOBAL_BOOL(allow_nt4_crypto, bAllowNT4Crypto) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 0c399b5750..3e171e8bbf 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1719,7 +1719,7 @@ static struct parm_struct parm_table[] = { .label = "durable handles", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bDurableHandles), + .offset = LOCAL_VAR(durable_handles), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 1516697dcf..d55c98e398 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -278,7 +278,7 @@ static struct loadparm_service sDefault = #endif .smb_encrypt = SMB_SIGNING_DEFAULT, .kernel_share_modes = true, - .bDurableHandles = true, + .durable_handles = true, .param_opt = NULL, .dummy = "" }; |
