diff options
author | Christopher Faylor <me@cgf.cx> | 2002-07-25 17:04:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-07-25 17:04:13 +0000 |
commit | 68fb3cca6427132e70f465305e67b5131f8f9120 (patch) | |
tree | 9f06af15b7804a4931701175582c1a42e99b88d3 /winsup/cygwin/security.cc | |
parent | be18721ec44326fcfb44c2ec3c4363e48ed10a79 (diff) | |
download | cygnal-68fb3cca6427132e70f465305e67b5131f8f9120.tar.gz cygnal-68fb3cca6427132e70f465305e67b5131f8f9120.tar.bz2 cygnal-68fb3cca6427132e70f465305e67b5131f8f9120.zip |
* security.cc (allow_ntsec): Default to on.
(allow_smbntsec): Default to off.
Diffstat (limited to 'winsup/cygwin/security.cc')
-rw-r--r-- | winsup/cygwin/security.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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) |