Fixed bug caused by usage of outdated parameter.

Fixed a bug affecting the creation of the handshake's directory.
This commit is contained in:
Matias Barcenas 2017-11-30 15:15:31 -06:00
parent 917f0b11f3
commit 973abf75f7
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ function handshake_snooper_arbiter_daemon() {
fi
# Assure we've got a directory to store hashes into.
local handshake_snooper_arbiter_daemon_hashDirectory=$(dirname "$2")
local handshake_snooper_arbiter_daemon_hashDirectory="$FLUXIONPath/attacks/Handshake Snooper/handshakes/"
if [ ! -d "$handshake_snooper_arbiter_daemon_hashDirectory" ]; then
mkdir -p "$handshake_snooper_arbiter_daemon_hashDirectory"
fi