diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-01-26 12:25:35 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-01-26 12:25:35 +0100 |
commit | e1a0d898474b23a67a6b8d3390f95802891919ef (patch) | |
tree | 8b2f21161de1deab396222e306b58c45c92cab7c | |
parent | 60fdc863ee5b60025f554cfbd60c18c4fef0b79e (diff) | |
download | exchange-e1a0d898474b23a67a6b8d3390f95802891919ef.tar.gz exchange-e1a0d898474b23a67a6b8d3390f95802891919ef.zip |
also fix type here
-rw-r--r-- | src/include/taler_mint_service.h | 4 | ||||
-rw-r--r-- | src/util/Makefile.am | 10 |
2 files changed, 2 insertions, 12 deletions
diff --git a/src/include/taler_mint_service.h b/src/include/taler_mint_service.h index a9d27982f..a404eff51 100644 --- a/src/include/taler_mint_service.h +++ b/src/include/taler_mint_service.h | |||
@@ -65,7 +65,7 @@ struct TALER_MINT_DenomPublicKey | |||
65 | /** | 65 | /** |
66 | * The public key | 66 | * The public key |
67 | */ | 67 | */ |
68 | struct TALER_RSA_PublicKeyBinaryEncoded key; | 68 | struct GNUNET_CRYPTO_rsa_PublicKey *key; |
69 | 69 | ||
70 | /** | 70 | /** |
71 | * Timestamp indicating when the denomination key becomes valid | 71 | * Timestamp indicating when the denomination key becomes valid |
@@ -112,7 +112,7 @@ struct TALER_MINT_DenomPublicKey | |||
112 | * @return the context | 112 | * @return the context |
113 | */ | 113 | */ |
114 | struct TALER_MINT_Context * | 114 | struct TALER_MINT_Context * |
115 | TALER_MINT_init (); | 115 | TALER_MINT_init (void); |
116 | 116 | ||
117 | 117 | ||
118 | /** | 118 | /** |
diff --git a/src/util/Makefile.am b/src/util/Makefile.am index d280cfd04..2fbcb54b4 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am | |||
@@ -19,13 +19,3 @@ libtalerutil_la_LDFLAGS = \ | |||
19 | $(POSTGRESQL_LDFLAGS) \ | 19 | $(POSTGRESQL_LDFLAGS) \ |
20 | -version-info 0:0:0 \ | 20 | -version-info 0:0:0 \ |
21 | -export-dynamic -no-undefined | 21 | -export-dynamic -no-undefined |
22 | |||
23 | check_PROGRAMS = \ | ||
24 | test-rsa | ||
25 | |||
26 | TESTS = \ | ||
27 | $(check_PROGRAMS) | ||
28 | |||
29 | test_rsa_SOURCES = test_rsa.c | ||
30 | test_rsa_LDADD = libtalerutil.la \ | ||
31 | -lgnunetutil $(LIBGCRYPT_LIBS) | ||