fido_dev_is_winhello: return 0, not "false"

"false" is not used anywhere in OpenSSH, so return 0 like
everywhere else.

Signed-off-by: Corinna Vinschen <vinschen@redhat.com>
This commit is contained in:
Corinna Vinschen 2022-08-11 20:18:17 +02:00 committed by Damien Miller
parent 730a806094
commit 9468cd7cf9
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ fido_assert_set_clientdata(fido_assert_t *assert, const u_char *ptr, size_t len)
static bool
fido_dev_is_winhello(const fido_dev_t *fdev)
{
return false;
return 0;
}
#endif /* HAVE_FIDO_DEV_IS_WINHELLO */