]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
fido_dev_is_winhello: return 0, not "false"
authorCorinna Vinschen <vinschen@redhat.com>
Thu, 11 Aug 2022 18:18:17 +0000 (20:18 +0200)
committerDamien Miller <djm@mindrot.org>
Fri, 12 Aug 2022 05:34:01 +0000 (15:34 +1000)
"false" is not used anywhere in OpenSSH, so return 0 like
everywhere else.

Signed-off-by: Corinna Vinschen <vinschen@redhat.com>
sk-usbhid.c

index 8e0e43eee13fd9468d09653df1548319f579fd6a..74df16ed0c141c2b8cbc0aa48756d33cb60f0a29 100644 (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 */