Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMD committed Oct 10, 2023
1 parent 069caee commit b51878d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion util.c
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,10 @@ int do_authentication(const cfg_t *cfg, const device_t *devices,
}
r = fido_assert_verify(assert, 0, pk.type, pk.ptr);
if (r == FIDO_OK) {
pam_syslog(pamh, LOG_INFO, "Successful FIDO authentication with publicKey %s (idx %u)", devices[i].publicKey, i);
pam_syslog(pamh, LOG_INFO,
"Successful FIDO authentication with publicKey %s (idx "
"%u)",
devices[i].publicKey, i);
retval = 1;
goto out;
}
Expand Down

0 comments on commit b51878d

Please sign in to comment.