Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-30 07:05:13 +0400
committerChristopher Faylor <me@cgf.cx>2002-09-30 07:05:13 +0400
commitf789fbbf355ef6fcec036806fed6948b47d04320 (patch)
tree79c5079f969e86bae28c34a0d60398d9193d8632 /winsup/cygwin/security.cc
parent0fa64fa3a7c09bd53be91f5c10e01fff8bdf7242 (diff)
* security.cc (allow_ntsec): Default to zero.
* environ.cc (environ_init): Set allow_ntsec to TRUE by default, assuming OS allows it.
Diffstat (limited to 'winsup/cygwin/security.cc')
-rw-r--r--winsup/cygwin/security.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc
index e9e8877a1..49eb82916 100644
--- a/winsup/cygwin/security.cc
+++ b/winsup/cygwin/security.cc
@@ -41,7 +41,7 @@ details. */
#include "lm.h"
extern BOOL allow_ntea;
-BOOL allow_ntsec = true;
+BOOL allow_ntsec;
/* 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. */