From 54200126c76e58ff15f69370bed8e70113eec71d Mon Sep 17 00:00:00 2001 From: emiel Date: Thu, 12 May 2022 10:42:47 +0200 Subject: [PATCH] Remove unused function --- src/pam_linotp.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/pam_linotp.c b/src/pam_linotp.c index 251f8b0..be8cfb7 100644 --- a/src/pam_linotp.c +++ b/src/pam_linotp.c @@ -175,16 +175,6 @@ static void do_log(int type, char * format, ...) { } } -char *my_itoa(int num, char *str) -{ - if(str == NULL) - { - return NULL; - } - sprintf(str, "%d", num); - return str; -} - #ifdef DEBUG #define log_error(format, ...) do_log(LOG_ERR, "linotp:ERROR: " #format, ## __VA_ARGS__)