aboutsummaryrefslogtreecommitdiff
path: root/src/set/gnunet-service-set_union.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-11-27 11:35:42 +0000
committerChristian Grothoff <christian@grothoff.org>2014-11-27 11:35:42 +0000
commit2b0e3f9ba871095d003fc078eee75b5eda6fc8b8 (patch)
treeb37e6f7d930ca23b0743bda4a76f82aa7c794e13 /src/set/gnunet-service-set_union.c
parent393b5b11525badff59ff6df0572c5cdf42c1587c (diff)
downloadgnunet-2b0e3f9ba871095d003fc078eee75b5eda6fc8b8.tar.gz
gnunet-2b0e3f9ba871095d003fc078eee75b5eda6fc8b8.zip
again, do not pass salt around, code cleanup, etc.
Diffstat (limited to 'src/set/gnunet-service-set_union.c')
-rw-r--r--src/set/gnunet-service-set_union.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/set/gnunet-service-set_union.c b/src/set/gnunet-service-set_union.c
index c00728015..88b8856b0 100644
--- a/src/set/gnunet-service-set_union.c
+++ b/src/set/gnunet-service-set_union.c
@@ -355,7 +355,8 @@ send_operation_request (struct Operation *op)
355 struct GNUNET_MQ_Envelope *ev; 355 struct GNUNET_MQ_Envelope *ev;
356 struct OperationRequestMessage *msg; 356 struct OperationRequestMessage *msg;
357 357
358 ev = GNUNET_MQ_msg_nested_mh (msg, GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST, 358 ev = GNUNET_MQ_msg_nested_mh (msg,
359 GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST,
359 op->spec->context_msg); 360 op->spec->context_msg);
360 361
361 if (NULL == ev) 362 if (NULL == ev)
@@ -371,10 +372,11 @@ send_operation_request (struct Operation *op)
371 GNUNET_MQ_send (op->mq, ev); 372 GNUNET_MQ_send (op->mq, ev);
372 373
373 if (NULL != op->spec->context_msg) 374 if (NULL != op->spec->context_msg)
374 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "sent op request with context message\n"); 375 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
376 "sent op request with context message\n");
375 else 377 else
376 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "sent op request without context message\n"); 378 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
377 379 "sent op request without context message\n");
378 if (NULL != op->spec->context_msg) 380 if (NULL != op->spec->context_msg)
379 { 381 {
380 GNUNET_free (op->spec->context_msg); 382 GNUNET_free (op->spec->context_msg);