From: Fredrik Thulin Date: Sat, 5 Feb 2011 19:19:59 +0000 (+0100) Subject: Fix YK_ENOMEM and YK_ENOSTATUS both being 0x07. X-Git-Tag: v1.5.0~16 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82d5de400b4bb86f3abe33005d2a3f0107da2f5b;p=yubikey-personalization.old Fix YK_ENOMEM and YK_ENOSTATUS both being 0x07. --- diff --git a/ykcore/ykcore.h b/ykcore/ykcore.h index 270dded..d848336 100644 --- a/ykcore/ykcore.h +++ b/ykcore/ykcore.h @@ -117,7 +117,7 @@ const char *yk_usb_strerror(); #define YK_ENOKEY 0x05 #define YK_EFIRMWARE 0x06 #define YK_ENOMEM 0x07 -#define YK_ENOSTATUS 0x07 -#define YK_ENOTYETIMPL 0x08 +#define YK_ENOSTATUS 0x08 +#define YK_ENOTYETIMPL 0x09 #endif /* __YKCORE_H_INCLUDED__ */