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

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2016-05-09 15:20:16 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-05-09 15:20:16 +0300
commitdfce1a770adefa3e9f8bd4e8e63c8ae3771d5dca (patch)
tree170bbcc36d634b1212db3e8c54b2fdf6642bbee8 /plugins
parenta40331aedcaa78c15e795ee981ff0bee2e6f3fd7 (diff)
Removed local variable assignment to prevent portability issues
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin_pam_phase12
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/plugin_pam_phase1 b/plugins/plugin_pam_phase1
index 4f15b4cf..a190bf16 100644
--- a/plugins/plugin_pam_phase1
+++ b/plugins/plugin_pam_phase1
@@ -76,7 +76,7 @@
case ${PAM_CONTROL_FLAG} in
"optional"|"required"|"requisite"|"sufficient")
#Debug "Found a common control flag: ${PAM_CONTROL_FLAG} for ${PAM_MODULE}"
- local X=0 # do nothing
+ X=0 # do nothing
;;
"other")
LogText "Result: brackets used, ignoring control flags"