fix variable name of returned value by get_existing_authentication()

This commit is contained in:
Laurent Indermuehle 2024-04-25 13:42:09 +02:00
parent 04f24c57f3
commit a60df289b2
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -162,7 +162,7 @@ def user_add(cursor, user, host, host_all, password, encrypted,
existing_auth = get_existing_authentication(cursor, user, host)
if existing_auth:
plugin = existing_auth['plugin']
plugin_hash_string = existing_auth['auth_string']
plugin_hash_string = existing_auth['plugin_hash_string']
password = None
used_existing_password = True
if password and encrypted: