From: Corinna Vinschen Date: Thu, 11 Aug 2022 18:18:17 +0000 (+0200) Subject: fido_dev_is_winhello: return 0, not "false" X-Git-Tag: V_9_1_P1~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9468cd7cf9d989dfa2ac20e2a0268ba6e93bfa5a;p=thirdparty%2Fopenssh-portable.git 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 --- diff --git a/sk-usbhid.c b/sk-usbhid.c index 8e0e43eee..74df16ed0 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 */