aboutsummaryrefslogtreecommitdiff
path: root/src/psycstore
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2014-05-06 10:26:24 +0000
committerGabor X Toth <*@tg-x.net>2014-05-06 10:26:24 +0000
commit4e1baae59f18ee5d7cd47afe28ced3daaaa5a5ad (patch)
tree4e0d4a1bf488d4969f44e3a8db26af6ca22d4db7 /src/psycstore
parentb2061e704ac6309bb7ee4427a89a1572aa9f339e (diff)
downloadgnunet-4e1baae59f18ee5d7cd47afe28ced3daaaa5a5ad.tar.gz
gnunet-4e1baae59f18ee5d7cd47afe28ced3daaaa5a5ad.zip
psyc: in-order message delivery
Diffstat (limited to 'src/psycstore')
-rw-r--r--src/psycstore/psycstore_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/psycstore/psycstore_api.c b/src/psycstore/psycstore_api.c
index 88ae1185b..a5fdea10b 100644
--- a/src/psycstore/psycstore_api.c
+++ b/src/psycstore/psycstore_api.c
@@ -1099,9 +1099,9 @@ GNUNET_PSYCSTORE_state_sync (struct GNUNET_PSYCSTORE_Handle *h,
1099 req->message_id = GNUNET_htonll (message_id); 1099 req->message_id = GNUNET_htonll (message_id);
1100 req->name_size = htons (name_size); 1100 req->name_size = htons (name_size);
1101 req->flags 1101 req->flags
1102 = 0 == i 1102 = (0 == i)
1103 ? STATE_OP_FIRST 1103 ? STATE_OP_FIRST
1104 : modifier_count - 1 == i 1104 : (modifier_count - 1 == i)
1105 ? STATE_OP_LAST 1105 ? STATE_OP_LAST
1106 : 0; 1106 : 0;
1107 1107