summaryrefslogtreecommitdiff
path: root/sk-usbhid.c
diff options
context:
space:
mode:
authorCorinna Vinschen <vinschen@redhat.com>2022-08-11 20:18:17 +0200
committerDamien Miller <djm@mindrot.org>2022-08-12 15:34:01 +1000
commit9468cd7cf9d989dfa2ac20e2a0268ba6e93bfa5a (patch)
tree9afb0f0e24fb600354552a7482ef7321f280e53a /sk-usbhid.c
parent730a80609472ee0451c99482d75c9c41f3ebc42d (diff)
downloadopenssh-git-9468cd7cf9d989dfa2ac20e2a0268ba6e93bfa5a.tar.gz
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>
Diffstat (limited to 'sk-usbhid.c')
-rw-r--r--sk-usbhid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sk-usbhid.c b/sk-usbhid.c
index 8e0e43ee..74df16ed 100644
--- a/sk-usbhid.c
+++ b/sk-usbhid.c
@@ -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 */