From 0d5c3c42a12e25553d6afdd716851465e8f0382e Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Sun, 8 Apr 2018 22:06:20 +0300 Subject: [PATCH] set -o noglob just in case --- bin/v-check-user-password | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/v-check-user-password b/bin/v-check-user-password index 57e59da3f..fbb0221e3 100755 --- a/bin/v-check-user-password +++ b/bin/v-check-user-password @@ -82,6 +82,7 @@ if [ -z "$salt" ]; then fi # Generating hash +set -o noglob hash=$($BIN/v-generate-password-hash $method $salt <<< "$password") if [[ -z "$hash" ]]; then echo "Error: password missmatch"