aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_remove_not_existing_record.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_namestore_api_remove_not_existing_record.c')
-rw-r--r--src/namestore/test_namestore_api_remove_not_existing_record.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/namestore/test_namestore_api_remove_not_existing_record.c b/src/namestore/test_namestore_api_remove_not_existing_record.c
index b87aec6a9..9e08efa1b 100644
--- a/src/namestore/test_namestore_api_remove_not_existing_record.c
+++ b/src/namestore/test_namestore_api_remove_not_existing_record.c
@@ -36,7 +36,7 @@
36 36
37static struct GNUNET_NAMESTORE_Handle *nsh; 37static struct GNUNET_NAMESTORE_Handle *nsh;
38 38
39static GNUNET_SCHEDULER_TaskIdentifier endbadly_task; 39static struct GNUNET_SCHEDULER_Task * endbadly_task;
40 40
41static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey; 41static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
42 42
@@ -98,10 +98,10 @@ put_cont (void *cls, int32_t success, const char *emsg)
98{ 98{
99 GNUNET_assert (NULL != cls); 99 GNUNET_assert (NULL != cls);
100 nsqe = NULL; 100 nsqe = NULL;
101 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK) 101 if (endbadly_task != NULL)
102 { 102 {
103 GNUNET_SCHEDULER_cancel (endbadly_task); 103 GNUNET_SCHEDULER_cancel (endbadly_task);
104 endbadly_task = GNUNET_SCHEDULER_NO_TASK; 104 endbadly_task = NULL;
105 } 105 }
106 106
107 switch (success) { 107 switch (success) {