aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Szengel <gnunet@maxsz.de>2012-10-26 18:23:06 +0000
committerMaximilian Szengel <gnunet@maxsz.de>2012-10-26 18:23:06 +0000
commitc5e6fb548d324236859281e1f421986b36ba131a (patch)
tree2dd8d4d05a6d9a729e606994747ea732b4c9bd55
parentf4e425272b12649edd919ab408501e1aa3a072bd (diff)
downloadgnunet-c5e6fb548d324236859281e1f421986b36ba131a.tar.gz
gnunet-c5e6fb548d324236859281e1f421986b36ba131a.zip
passing mesage header instead of message
-rw-r--r--src/mesh/mesh_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/mesh_api.c b/src/mesh/mesh_api.c
index 479203f45..77ae1217f 100644
--- a/src/mesh/mesh_api.c
+++ b/src/mesh/mesh_api.c
@@ -1697,7 +1697,7 @@ GNUNET_MESH_announce_regex (struct GNUNET_MESH_Handle *h,
1697 msg->compression_characters = htons (compression_characters); 1697 msg->compression_characters = htons (compression_characters);
1698 memcpy (&msg[1], regex, len); 1698 memcpy (&msg[1], regex, len);
1699 1699
1700 send_packet(h, msg, NULL); 1700 send_packet(h, &msg->header, NULL);
1701 } 1701 }
1702} 1702}
1703 1703