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>2019-09-19 15:05:15 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-09-19 15:05:15 +0300
commit36627a4eb7fb0d505c6df7897083d161e59cdf34 (patch)
tree5efa5a2f34c6683635259a97ebbbfd3ec1739629 /include/tests_mail_messaging
parent950be03ddbc150d3b61b5ea620833a1991f32b3c (diff)
Style improvements
Diffstat (limited to 'include/tests_mail_messaging')
-rw-r--r--include/tests_mail_messaging4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_mail_messaging b/include/tests_mail_messaging
index a8d33398..a5d116fc 100644
--- a/include/tests_mail_messaging
+++ b/include/tests_mail_messaging
@@ -203,7 +203,7 @@
esac
LogText "Test: Exim Try Verify Hosts"
- if [ ! -z "${EXIM_TRY_VERIFY_HOSTS}" ]; then
+ if [ -n "${EXIM_TRY_VERIFY_HOSTS}" ]; then
LogText "Result: Try Verify Hosts enabled"
case "${EXIM_TYPE}" in
"INTERNET HOST" )
@@ -219,7 +219,7 @@
fi
LogText "Test: Exim Verify Hosts"
- if [ ! -z "${EXIM_VERIFY_HOSTS}" ]; then
+ if [ -n "${EXIM_VERIFY_HOSTS}" ]; then
LogText "Result: Verify Hosts enabled"
case "${EXIM_TYPE}" in
"INTERNET HOST" )