remove_secure_session(): Add missing 'fi' statement

Signed-off-by: Richard T Bonhomme <tincantech@protonmail.com>
This commit is contained in:
Richard T Bonhomme 2023-05-01 14:04:30 +01:00
parent a9bc2ee576
commit a9192c1866
No known key found for this signature in database
GPG Key ID: 2D767DB92FB6C246

View File

@ -656,11 +656,12 @@ remove_secure_session() {
then then
# Always remove temp-session # Always remove temp-session
if rm -rf "$secured_session"; then if rm -rf "$secured_session"; then
verbose "\ verbose "\
remove_secure_session: DELETED: $secured_session" remove_secure_session: DELETED: $secured_session"
unset -v working_safe_ssl_conf mktemp_counter \ unset -v working_safe_ssl_conf \
secured_session mktemp_counter secured_session
return 0 return 0
fi
fi fi
die "remove_secure_session: $secured_session" die "remove_secure_session: $secured_session"