aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/ykfde.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ykfde.c b/bin/ykfde.c
index bfdfa6b..c0bcd25 100644
--- a/bin/ykfde.c
+++ b/bin/ykfde.c
@@ -146,14 +146,15 @@ int main(int argc, char **argv) {
}
/* init and open first Yubikey */
- if ((rc = yk_init()) < 0) {
+ if (yk_init() == 0) {
perror("yk_init() failed");
+ rc = EXIT_FAILURE;
goto out20;
}
if ((yk = yk_open_first_key()) == NULL) {
- rc = EXIT_FAILURE;
fprintf(stderr, "No Yubikey available.\n");
+ rc = EXIT_FAILURE;
goto out30;
}