-fix uninit and fix leak
[oweals/gnunet.git] / src / gns / test_gns_simple_lookup.c
index 8204b03eb483e65850dc98b5d532d5f87fb09aa6..a7c3348fdb8b74d98fe2c5d4041fe77965abacf6 100644 (file)
@@ -23,7 +23,7 @@
  * @author Martin Schanzenbach
  */
 #include "platform.h"
-#include "gnunet_testing_lib-new.h"
+#include "gnunet_testing_lib.h"
 #include "gnunet_core_service.h"
 #include "block_dns.h"
 #include "gnunet_signatures.h"
@@ -221,8 +221,8 @@ do_check (void *cls,
           const struct GNUNET_CONFIGURATION_Handle *ccfg,
           struct GNUNET_TESTING_Peer *peer)
 {
-  struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
-  struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
+  struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded alice_pkey;
+  struct GNUNET_CRYPTO_EccPrivateKey *alice_key;
   struct GNUNET_NAMESTORE_RecordData rd;
   char* alice_keyfile;
   char* ip = TEST_IP;
@@ -251,8 +251,8 @@ do_check (void *cls,
     return;
   }
 
-  alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
-  GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
+  alice_key = GNUNET_CRYPTO_ecc_key_create_from_file (alice_keyfile);
+  GNUNET_CRYPTO_ecc_key_get_public (alice_key, &alice_pkey);
   GNUNET_free (alice_keyfile);
   rd.expiration_time = UINT64_MAX;
   GNUNET_assert (1 == inet_pton (AF_INET, ip, &web));
@@ -260,13 +260,13 @@ do_check (void *cls,
   rd.data = &web;
   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
-  nsqe = GNUNET_NAMESTORE_record_create (namestore_handle,
-                                        alice_key,
-                                        TEST_RECORD_NAME,
-                                        &rd,
-                                        &commence_testing,
-                                        NULL);
-  GNUNET_CRYPTO_rsa_key_free (alice_key);
+  nsqe = GNUNET_NAMESTORE_record_put_by_authority (namestore_handle,
+                                                  alice_key,
+                                                  TEST_RECORD_NAME,
+                                                  1, &rd,
+                                                  &commence_testing,
+                                                  NULL);
+  GNUNET_CRYPTO_ecc_key_free (alice_key);
 }