Modify check_password_by_pam function.

This commit is contained in:
Samson-W 2018-09-08 22:27:47 +08:00
parent 8c1a0e3f6d
commit 3d7bcb9d99

View File

@ -466,16 +466,16 @@ check_password_by_pam()
FNRET=0 FNRET=0
else else
debug "$cndt_value -$COMPARE $CONDITION is not ok" debug "$cndt_value -$COMPARE $CONDITION is not ok"
FNRET=1 FNRET=5
fi fi
else else
debug "$KEYWORD $OPTION is not conf" debug "$KEYWORD $OPTION is not conf"
FNRET=1 FNRET=4
fi fi
else else
debug "$LOCATION is not exist" debug "$LOCATION is not exist"
FNRET=2 FNRET=3
fi fi
} }