From 084f7e3620774cf976ef955a3db5df9ff7651263 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 20 Oct 2013 18:04:56 +0000 Subject: [PATCH] -32 bit, not 16 --- src/namestore/gnunet-service-namestore.c | 2 +- src/namestore/test_namestore_api_monitoring.c | 27 ++++++++++++------- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/src/namestore/gnunet-service-namestore.c b/src/namestore/gnunet-service-namestore.c index b0704d7bd..58f214e43 100644 --- a/src/namestore/gnunet-service-namestore.c +++ b/src/namestore/gnunet-service-namestore.c @@ -1237,7 +1237,7 @@ handle_monitor_start (void *cls, GNUNET_SERVER_disable_receive_done_warning (client); GNUNET_SERVER_notification_context_add (monitor_nc, client); - if (GNUNET_YES == ntohs (zis_msg->iterate_first)) + if (GNUNET_YES == ntohl (zis_msg->iterate_first)) zm->task = GNUNET_SCHEDULER_add_now (&monitor_next, zm); else monitor_sync (zm); diff --git a/src/namestore/test_namestore_api_monitoring.c b/src/namestore/test_namestore_api_monitoring.c index c9b182fc8..a0a5ec4b6 100644 --- a/src/namestore/test_namestore_api_monitoring.c +++ b/src/namestore/test_namestore_api_monitoring.c @@ -150,13 +150,15 @@ zone_proc (void *cls, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd) { - static int returned_records; - static int fail = GNUNET_NO; + static int returned_records; + static int fail = GNUNET_NO; + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing results name %s\n", name); - - if (0 != memcmp (zone_key, privkey, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey))) + if (0 != memcmp (zone_key, + privkey, + sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey))) { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Monitoring returned wrong zone key\n"); @@ -185,8 +187,9 @@ zone_proc (void *cls, else { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Invalid name %s\n", name); - GNUNET_break (0); + "Invalid name %s\n", + name); + GNUNET_break (0); fail = GNUNET_YES; } @@ -202,7 +205,6 @@ zone_proc (void *cls, else GNUNET_SCHEDULER_add_now (&end, NULL); } - } @@ -222,11 +224,15 @@ put_cont (void *cls, int32_t success, const char *emsg) if (success == GNUNET_OK) { c++; - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u: `%s'\n", c, label); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Created record %u: `%s'\n", + c, + label); } else { - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records\n"); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Failed to created records\n"); GNUNET_break (0); GNUNET_SCHEDULER_cancel (endbadly_task); endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL); @@ -281,7 +287,8 @@ run (void *cls, NULL); if (NULL == zm) { - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone monitor\n"); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Failed to create zone monitor\n"); GNUNET_break (0); endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL); return; -- 2.25.1