-not sure I see how this test can work, disabling for now
[oweals/gnunet.git] / src / gns / test_gns_ns_lookup.c
index 98a849c4cb05980710bbee71fd3fbfec334cd3da..dbeef3f656489ba84607e26e1d980a0c814bee00 100644 (file)
@@ -563,7 +563,7 @@ do_check (void *cls,
           const struct GNUNET_CONFIGURATION_Handle *ccfg,
           struct GNUNET_TESTING_Peer *peer)
 {
-  struct GNUNET_CRYPTO_EccPublicKey alice_pkey;
+  struct GNUNET_CRYPTO_EccPublicSignKey alice_pkey;
   char* alice_keyfile;
   struct GNUNET_NAMESTORE_RecordData rd[2];
   struct in_addr ns;
@@ -593,7 +593,7 @@ do_check (void *cls,
   }
 
   alice_key = GNUNET_CRYPTO_ecc_key_create_from_file (alice_keyfile);
-  GNUNET_CRYPTO_ecc_key_get_public (alice_key, &alice_pkey);
+  GNUNET_CRYPTO_ecc_key_get_public_for_signature (alice_key, &alice_pkey);
   GNUNET_free (alice_keyfile);
 
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
@@ -603,13 +603,13 @@ do_check (void *cls,
   rd[0].data_size = sizeof (struct in_addr);
   rd[0].data = &ns;
   rd[0].record_type = GNUNET_DNSPARSER_TYPE_A;
-  rd[0].flags = GNUNET_NAMESTORE_RF_AUTHORITY;
+  rd[0].flags = GNUNET_NAMESTORE_RF_NONE;
   
   rd[1].expiration_time = UINT64_MAX;
   rd[1].data_size = strlen (TEST_RECORD_NS);
   rd[1].data = TEST_RECORD_NS;
   rd[1].record_type = GNUNET_DNSPARSER_TYPE_NS;
-  rd[1].flags = GNUNET_NAMESTORE_RF_AUTHORITY;
+  rd[1].flags = GNUNET_NAMESTORE_RF_NONE;
 
   qe = GNUNET_NAMESTORE_record_put_by_authority (namestore_handle,
                                                 alice_key,