aboutsummaryrefslogtreecommitdiff
path: root/src/core/core_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-21 14:44:09 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-21 14:44:09 +0000
commitc15f5207174ca135ffd99a00f81528557e882942 (patch)
treeea4ea2681c1cd6486e73c110b64c60645cc0d4e0 /src/core/core_api.c
parentef066d8cec90c32c4d112a93f3ae2fc82b162872 (diff)
downloadgnunet-c15f5207174ca135ffd99a00f81528557e882942.tar.gz
gnunet-c15f5207174ca135ffd99a00f81528557e882942.zip
do not invert order
Diffstat (limited to 'src/core/core_api.c')
-rw-r--r--src/core/core_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index 15e8add7e..a2ac1a7d4 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -1758,9 +1758,9 @@ GNUNET_CORE_peer_request_connect (struct GNUNET_CORE_Handle *h,
1758 msg->reserved = htonl (0); 1758 msg->reserved = htonl (0);
1759 msg->timeout = GNUNET_TIME_relative_hton (timeout); 1759 msg->timeout = GNUNET_TIME_relative_hton (timeout);
1760 msg->peer = *peer; 1760 msg->peer = *peer;
1761 GNUNET_CONTAINER_DLL_insert (h->control_pending_head, 1761 GNUNET_CONTAINER_DLL_insert_tail (h->control_pending_head,
1762 h->control_pending_tail, 1762 h->control_pending_tail,
1763 cm); 1763 cm);
1764 ret = GNUNET_malloc (sizeof (struct GNUNET_CORE_PeerRequestHandle)); 1764 ret = GNUNET_malloc (sizeof (struct GNUNET_CORE_PeerRequestHandle));
1765 ret->h = h; 1765 ret->h = h;
1766 ret->cm = cm; 1766 ret->cm = cm;