Skip to content

Commit

Permalink
Port to Chimaera
Browse files Browse the repository at this point in the history
* Use 'extern' keyword to fix "multiple definition" errors at compilation
* Fix wrong changelog trailer line in previous change
  • Loading branch information
sicelo committed May 12, 2023
1 parent 950ac3c commit fba3796
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions debian/changelog
@@ -1,8 +1,15 @@
maeotp (0.2.4-0) ustable; urgency=low
maeotp (0.2.5-0) unstable; urgency=low

* Fix compilation error by using extern keyword
* Fix incorrectly formatted changelog trailer line

-- Sicelo A. Mhlongo <absicsz@gmail.com> Thu, 11 May 2023 23:58:21 +0200

maeotp (0.2.4-0) unstable; urgency=low

* Fix testsuite

-- Sicelo A. Mhlongo <absicsz@gmail.com> Tue, 24 Mar 2020 23:25:47 +02:00
-- Sicelo A. Mhlongo <absicsz@gmail.com> Tue, 24 Mar 2020 23:25:47 +0200

maeotp (0.2.3-0) unstable; urgency=low

Expand Down Expand Up @@ -40,7 +47,5 @@ otp (0.2-0) unstable; urgency=low
otp (0.1-1) unstable; urgency=low

* Initial release
*

-- Sean Whitbeck <sean@neush.net> Fri, 28 Jan 2011 13:42:52 +0100

4 changes: 2 additions & 2 deletions src/otp.h
Expand Up @@ -59,8 +59,8 @@ typedef enum {
} KeyType;


const gchar* algorithm_labels[N_OTP_ALGORITHMS];
const gchar* counter_type_labels[N_OTP_COUNTER_TYPES];
extern const gchar* algorithm_labels[N_OTP_ALGORITHMS];
extern const gchar* counter_type_labels[N_OTP_COUNTER_TYPES];


/* OTP Tokens */
Expand Down

0 comments on commit fba3796

Please sign in to comment.