]> err.no Git - yubikey-personalization.old/commitdiff
Fix constness. v1.6.0
authorSimon Josefsson <simon@josefsson.org>
Wed, 20 Jul 2011 10:21:02 +0000 (12:21 +0200)
committerSimon Josefsson <simon@josefsson.org>
Wed, 20 Jul 2011 10:21:02 +0000 (12:21 +0200)
ykpers.c
ykpers.h

index 42756c1b3efeff262d5ad83fd568f2da47e78b87..acb01fb4c99d18fe7cecc518a2bcd1f06d46862d 100644 (file)
--- a/ykpers.c
+++ b/ykpers.c
@@ -330,7 +330,7 @@ int ykp_set_oath_imf(YKP_CONFIG *cfg, unsigned long imf)
        return 1;
 }
 
-unsigned long ykp_get_oath_imf(YKP_CONFIG *cfg)
+unsigned long ykp_get_oath_imf(const YKP_CONFIG *cfg)
 {
        if (!vcheck_v22_or_greater(cfg)) {
                return 0;
index 614cdb374295b57fc82419a7fdc3790635c0fc97..5727a8de6f52bae3925f3db3d5d49e037710ea02 100644 (file)
--- a/ykpers.h
+++ b/ykpers.h
@@ -1,6 +1,6 @@
 /* -*- mode:C; c-file-style: "bsd" -*- */
 /*
- * Copyright (c) 2008, 2009, Yubico AB
+ * Copyright (c) 2008, 2009, 2010, 2011  Yubico AB
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -55,7 +55,7 @@ int ykp_set_access_code(YKP_CONFIG *cfg, unsigned char *access_code, size_t len)
 int ykp_set_fixed(YKP_CONFIG *cfg, unsigned char *fixed, size_t len);
 int ykp_set_uid(YKP_CONFIG *cfg, unsigned char *uid, size_t len);
 int ykp_set_oath_imf(YKP_CONFIG *cfg, unsigned long imf);
-unsigned long ykp_get_oath_imf(YKP_CONFIG *cfg);
+unsigned long ykp_get_oath_imf(const YKP_CONFIG *cfg);
 
 int ykp_set_tktflag_TAB_FIRST(YKP_CONFIG *cfg, bool state);
 int ykp_set_tktflag_APPEND_TAB1(YKP_CONFIG *cfg, bool state);