aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_clients.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht_clients.c')
-rw-r--r--src/dht/gnunet-service-dht_clients.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index af9a869d4..d7d1161d2 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -1051,6 +1051,7 @@ GDS_CLIENTS_process_monitor (uint16_t mtype,
1051 uint32_t getl, 1051 uint32_t getl,
1052 const struct GNUNET_PeerIdentity *get_path, 1052 const struct GNUNET_PeerIdentity *get_path,
1053 uint32_t replevel, 1053 uint32_t replevel,
1054 uint32_t desired_replication_level,
1054 enum GNUNET_BLOCK_Type type, 1055 enum GNUNET_BLOCK_Type type,
1055 const struct GNUNET_MessageHeader *data, 1056 const struct GNUNET_MessageHeader *data,
1056 uint16_t size) 1057 uint16_t size)
@@ -1094,6 +1095,7 @@ GDS_CLIENTS_process_monitor (uint16_t mtype,
1094 memcpy (&mmsg->key, key, sizeof (GNUNET_HashCode)); 1095 memcpy (&mmsg->key, key, sizeof (GNUNET_HashCode));
1095 mmsg->put_path_length = htonl(putl); 1096 mmsg->put_path_length = htonl(putl);
1096 mmsg->get_path_length = htonl(getl); 1097 mmsg->get_path_length = htonl(getl);
1098 mmsg->desired_replication_level = htonl (desired_replication_level);
1097 path = (struct GNUNET_PeerIdentity *) &mmsg[1]; 1099 path = (struct GNUNET_PeerIdentity *) &mmsg[1];
1098 if (putl > 0) 1100 if (putl > 0)
1099 { 1101 {