summaryrefslogtreecommitdiff
path: root/nettle-meta-ciphers.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2017-10-23 22:05:32 +0200
committerNiels Möller <nisse@lysator.liu.se>2017-10-23 22:05:32 +0200
commit54e1450a0ebdd24cdf6234741e5275bb3d83ebda (patch)
treebc4fc0fdb1e7fa1aa5f74a2d140326f4a68f380d /nettle-meta-ciphers.c
parentb84dff15db04301e1858e0f80ca1c3bb874b88cc (diff)
downloadnettle-54e1450a0ebdd24cdf6234741e5275bb3d83ebda.tar.gz
Undo added underscores on public symbols.
Diffstat (limited to 'nettle-meta-ciphers.c')
-rw-r--r--nettle-meta-ciphers.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/nettle-meta-ciphers.c b/nettle-meta-ciphers.c
index 49cb47a7..ef905d8e 100644
--- a/nettle-meta-ciphers.c
+++ b/nettle-meta-ciphers.c
@@ -36,7 +36,9 @@
#include <stddef.h>
#include "nettle-meta.h"
-const struct nettle_cipher * const _nettle_ciphers[] = {
+#undef nettle_ciphers
+
+const struct nettle_cipher * const nettle_ciphers[] = {
&nettle_aes128,
&nettle_aes192,
&nettle_aes256,
@@ -60,5 +62,5 @@ const struct nettle_cipher * const _nettle_ciphers[] = {
const struct nettle_cipher * const *
nettle_get_ciphers (void)
{
- return _nettle_ciphers;
+ return nettle_ciphers;
}