aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gns_api.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-28 11:12:19 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-28 11:12:19 +0000
commitba5736672201f5c3a97c7e8b46f716077b416d6c (patch)
treeef89bb093c40efc3d69c7cfcb2f6d1c0d1d17010 /src/gns/gns_api.c
parente7526f97264417497e9d7d89d53a7dac4d832083 (diff)
downloadgnunet-ba5736672201f5c3a97c7e8b46f716077b416d6c.tar.gz
gnunet-ba5736672201f5c3a97c7e8b46f716077b416d6c.zip
-fixes, cleanup
Diffstat (limited to 'src/gns/gns_api.c')
-rw-r--r--src/gns/gns_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index 09e5426f9..4b7d6b9f8 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -686,7 +686,7 @@ GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
686 686
687 memcpy(&lookup_msg[1], name, strlen(name)); 687 memcpy(&lookup_msg[1], name, strlen(name));
688 688
689 GNUNET_CONTAINER_DLL_insert (handle->pending_head, handle->pending_tail, 689 GNUNET_CONTAINER_DLL_insert_tail (handle->pending_head, handle->pending_tail,
690 pending); 690 pending);
691 691
692 process_pending_messages (handle); 692 process_pending_messages (handle);
@@ -743,7 +743,7 @@ GNUNET_GNS_shorten (struct GNUNET_GNS_Handle *handle,
743 743
744 memcpy(&shorten_msg[1], name, strlen(name)); 744 memcpy(&shorten_msg[1], name, strlen(name));
745 745
746 GNUNET_CONTAINER_DLL_insert (handle->pending_head, handle->pending_tail, 746 GNUNET_CONTAINER_DLL_insert_tail (handle->pending_head, handle->pending_tail,
747 pending); 747 pending);
748 748
749 process_pending_messages (handle); 749 process_pending_messages (handle);
@@ -800,7 +800,7 @@ GNUNET_GNS_get_authority (struct GNUNET_GNS_Handle *handle,
800 800
801 memcpy(&get_auth_msg[1], name, strlen(name)); 801 memcpy(&get_auth_msg[1], name, strlen(name));
802 802
803 GNUNET_CONTAINER_DLL_insert (handle->pending_head, handle->pending_tail, 803 GNUNET_CONTAINER_DLL_insert_tail (handle->pending_head, handle->pending_tail,
804 pending); 804 pending);
805 805
806 process_pending_messages (handle); 806 process_pending_messages (handle);