[openssh-commits] [openssh] 01/01: fido_dev_is_winhello: return 0, not "false"
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Aug 12 15:34:12 AEST 2022
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 9468cd7cf9d989dfa2ac20e2a0268ba6e93bfa5a
Author: Corinna Vinschen <vinschen at redhat.com>
Date: Thu Aug 11 20:18:17 2022 +0200
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 at redhat.com>
---
sk-usbhid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list