summaryrefslogtreecommitdiffstats
path: root/init.c
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-10-15 08:20:21 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-10-15 08:20:21 +0000
commit51f7b8487b67dd5fbca3794b76919df878c03fb6 (patch)
tree9ec24dddc2711bd69e1c2cc5dd2fda2ae5f02055 /init.c
parent9a88179e58a821d32913d9bc0a54eb73023cde7f (diff)
downloadopenvpn-51f7b8487b67dd5fbca3794b76919df878c03fb6.tar.gz
openvpn-51f7b8487b67dd5fbca3794b76919df878c03fb6.tar.xz
openvpn-51f7b8487b67dd5fbca3794b76919df878c03fb6.zip
Added additional warning messages about --script-security 2
or higher being required to execute user-defined scripts or executables. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3436 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'init.c')
-rw-r--r--init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.c b/init.c
index 9686483..fc37ac0 100644
--- a/init.c
+++ b/init.c
@@ -1999,8 +1999,10 @@ do_option_warnings (struct context *c)
if (script_security >= SSEC_SCRIPTS)
msg (M_WARN, "NOTE: the current --script-security setting may allow this configuration to call user-defined scripts");
- if (script_security >= SSEC_PW_ENV)
+ else if (script_security >= SSEC_PW_ENV)
msg (M_WARN, "WARNING: the current --script-security setting may allow passwords to be passed to scripts via environmental variables");
+ else
+ msg (M_WARN, "NOTE: " PACKAGE_NAME " 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables");
}
static void