From 68fb3cca6427132e70f465305e67b5131f8f9120 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 25 Jul 2002 17:04:13 +0000 Subject: [PATCH] * security.cc (allow_ntsec): Default to on. (allow_smbntsec): Default to off. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/security.cc | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e45e93d7d..989f9781b 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2002-07-25 Christopher Faylor + + * security.cc (allow_ntsec): Default to on. + (allow_smbntsec): Default to off. + 2002-07-24 David MacMahon * times.cc (to_time_t): Always round time_t down to nearest second. diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc index 1e9a860c2..a89ff2972 100644 --- a/winsup/cygwin/security.cc +++ b/winsup/cygwin/security.cc @@ -41,11 +41,11 @@ details. */ #include "lm.h" extern BOOL allow_ntea; -BOOL allow_ntsec; +BOOL allow_ntsec = true; /* allow_smbntsec is handled exclusively in path.cc (path_conv::check). It's defined here because of it's strong relationship to allow_ntsec. The default is TRUE to reflect the old behaviour. */ -BOOL allow_smbntsec = TRUE; +BOOL allow_smbntsec; extern "C" void cygwin_set_impersonation_token (const HANDLE hToken) -- 2.43.5