]> sourceware.org Git - newlib-cygwin.git/commitdiff
* security.cc (allow_ntsec): Default to on.
authorChristopher Faylor <me@cgf.cx>
Thu, 25 Jul 2002 17:04:13 +0000 (17:04 +0000)
committerChristopher Faylor <me@cgf.cx>
Thu, 25 Jul 2002 17:04:13 +0000 (17:04 +0000)
(allow_smbntsec): Default to off.

winsup/cygwin/ChangeLog
winsup/cygwin/security.cc

index e45e93d7d19de3c898459bc99975daf873cbf286..989f9781bb607053b0a6a3b3c21eb53ced0b869f 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-25  Christopher Faylor  <cgf@redhat.com>
+
+       * security.cc (allow_ntsec): Default to on.
+       (allow_smbntsec): Default to off.
+
 2002-07-24  David MacMahon  <davidm@smartsc.com>
 
        * times.cc (to_time_t): Always round time_t down to nearest second.
index 1e9a860c2f86619aaca45adb8a23c5adf01c3656..a89ff2972cd9b1fd2a50c5d31cfc8f68cd3481c6 100644 (file)
@@ -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)
This page took 0.038529 seconds and 5 git commands to generate.