1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2024-11-29 00:24:13 +01:00

drop unused variable from log

fixes #46
This commit is contained in:
Klas Lindfors 2017-08-04 13:16:28 +02:00
parent fd7bc98dd4
commit 62062a55db
No known key found for this signature in database
GPG Key ID: BCA00FD4B2168C0A

View File

@ -69,7 +69,7 @@ if (!$r) {
# Enable/Disable the yubikey # Enable/Disable the yubikey
if (!$db->updateBy('yubikeys', 'yk_publicname', $yk, if (!$db->updateBy('yubikeys', 'yk_publicname', $yk,
array('active'=>($do == "enable" ? "1" : "0")))) { array('active'=>($do == "enable" ? "1" : "0")))) {
logdie($myLog, "ERROR Could not $do for $yk (rows $rows)"); logdie($myLog, "ERROR Could not $do for $yk");
} }
# We are done # We are done