From 9468cd7cf9d989dfa2ac20e2a0268ba6e93bfa5a Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 11 Aug 2022 20:18:17 +0200 Subject: 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 --- sk-usbhid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sk-usbhid.c') 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 */ -- cgit v1.2.1