- dont resend useless channel_destroy messages
[oweals/gnunet.git] / src / set / test_set_api.c
index b7e1961f2cba8fb81436424209a8a5f7cff2a832..ec5226d50aee42a41cc37dfc05447f115c2cedcd 100644 (file)
@@ -197,6 +197,8 @@ test_iter ()
 
   iter_set = GNUNET_SET_create (config, GNUNET_SET_OPERATION_UNION);
 
+  element.type = 0;
+
   element.data = "hello";
   element.size = strlen(element.data);
   GNUNET_SET_add_element (iter_set, &element, NULL, NULL);
@@ -214,7 +216,7 @@ test_iter ()
 /**
  * Signature of the 'main' function for a (single-peer) testcase that
  * is run using 'GNUNET_TESTING_peer_run'.
- * 
+ *
  * @param cls closure
  * @param cfg configuration of the peer that was started
  * @param peer identity of the peer that was created
@@ -228,10 +230,10 @@ run (void *cls,
   struct GNUNET_SET_OperationHandle *my_oh;
 
   config = cfg;
-  GNUNET_CRYPTO_get_host_identity (cfg, &local_id);
-  printf ("my id (from CRYPTO): %s\n", GNUNET_h2s (&local_id.hashPubKey));
+  GNUNET_CRYPTO_get_peer_identity (cfg, &local_id);
+  printf ("my id (from CRYPTO): %s\n", GNUNET_i2s (&local_id));
   GNUNET_TESTING_peer_get_identity (peer, &local_id);
-  printf ("my id (from TESTING): %s\n", GNUNET_h2s (&local_id.hashPubKey));
+  printf ("my id (from TESTING): %s\n", GNUNET_i2s (&local_id));
 
   test_iter ();