]> err.no Git - yubikey-personalization/commitdiff
raise NONE from 0 to 1 to make empty the default
authorKlas Lindfors <klas@yubico.com>
Fri, 7 Jun 2013 12:12:25 +0000 (14:12 +0200)
committerKlas Lindfors <klas@yubico.com>
Fri, 7 Jun 2013 12:12:25 +0000 (14:12 +0200)
ykpers.h

index e9047b6a358df26ea3a2328c943159c763c8fd92..8b96d6cfc4561a75282e1c0ae5a45baa1ba87abb 100644 (file)
--- a/ykpers.h
+++ b/ykpers.h
@@ -186,9 +186,9 @@ int ykp_import_config(YKP_CONFIG *cfg, const char *buf, size_t len, int format);
 void ykp_set_acccode_type(YKP_CONFIG *cfg, unsigned int type);
 unsigned int ykp_get_acccode_type(const YKP_CONFIG *cfg);
 
-#define YKP_ACCCODE_NONE       0x00
-#define YKP_ACCCODE_RANDOM     0x01
-#define YKP_ACCCODE_SERIAL     0x02
+#define YKP_ACCCODE_NONE       0x01
+#define YKP_ACCCODE_RANDOM     0x02
+#define YKP_ACCCODE_SERIAL     0x03
 
 extern int * _ykp_errno_location(void);
 #define ykp_errno (*_ykp_errno_location())