aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NK_C_API.h2
-rw-r--r--libnitrokey/NitrokeyManager.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/NK_C_API.h b/NK_C_API.h
index 28e83b9..f23bb5d 100644
--- a/NK_C_API.h
+++ b/NK_C_API.h
@@ -398,7 +398,7 @@ extern "C" {
*/
NK_C_API int NK_totp_set_time_soft(uint64_t time);
- /* NK_totp_get_time() is deprecated -- use NK_totp_set_time_soft */
+ [[deprecated("NK_totp_get_time is deprecated -- use NK_totp_set_time_soft instead")]]
NK_C_API int NK_totp_get_time();
//passwords
diff --git a/libnitrokey/NitrokeyManager.h b/libnitrokey/NitrokeyManager.h
index f7a99da..0689c3f 100644
--- a/libnitrokey/NitrokeyManager.h
+++ b/libnitrokey/NitrokeyManager.h
@@ -75,7 +75,8 @@ char * strndup(const char* str, size_t maxlen);
* 1970-01-01)
*/
void set_time_soft(uint64_t time);
- /* get_time is deprecated -- use set_time_soft instead */
+
+ [[deprecated("get_time is deprecated -- use set_time_soft instead")]]
bool get_time(uint64_t time = 0);
bool erase_totp_slot(uint8_t slot_number, const char *temporary_password);
bool erase_hotp_slot(uint8_t slot_number, const char *temporary_password);