aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/gnunet-scalarproduct.c
diff options
context:
space:
mode:
authorChristian Fuchs <christian.fuchs@cfuchs.net>2013-09-11 17:06:04 +0000
committerChristian Fuchs <christian.fuchs@cfuchs.net>2013-09-11 17:06:04 +0000
commitd6f94672c2e5ce0da942aaff9fab277176027656 (patch)
tree1475d64fd700c47448a0b58fdf0f5f65522ac354 /src/scalarproduct/gnunet-scalarproduct.c
parent361fb8f1f3f57d0fb47fa923fe8c813f5d0bb86e (diff)
downloadgnunet-d6f94672c2e5ce0da942aaff9fab277176027656.tar.gz
gnunet-d6f94672c2e5ce0da942aaff9fab277176027656.zip
the key entry in GNUNET_SCALARPRODUCT_ComputationHandle is now a struct, not a pointer.
re-added scheduler shutdown to SP-client
Diffstat (limited to 'src/scalarproduct/gnunet-scalarproduct.c')
-rw-r--r--src/scalarproduct/gnunet-scalarproduct.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/scalarproduct/gnunet-scalarproduct.c b/src/scalarproduct/gnunet-scalarproduct.c
index c32bfdaa1..7fe6cf75c 100644
--- a/src/scalarproduct/gnunet-scalarproduct.c
+++ b/src/scalarproduct/gnunet-scalarproduct.c
@@ -104,6 +104,7 @@ responder_callback (void *cls,
104 default: 104 default:
105 LOG (GNUNET_ERROR_TYPE_ERROR, "Session %s failed: return code %d\n", GNUNET_h2s (&closure->key), status); 105 LOG (GNUNET_ERROR_TYPE_ERROR, "Session %s failed: return code %d\n", GNUNET_h2s (&closure->key), status);
106 } 106 }
107 GNUNET_SCHEDULER_shutdown();
107} 108}
108 109
109 110
@@ -149,6 +150,7 @@ requester_callback (void *cls,
149 default: 150 default:
150 LOG (GNUNET_ERROR_TYPE_ERROR, "Session %s with peer %s failed: return code %d\n", GNUNET_h2s (&closure->key), GNUNET_i2s (&closure->peer), status); 151 LOG (GNUNET_ERROR_TYPE_ERROR, "Session %s with peer %s failed: return code %d\n", GNUNET_h2s (&closure->key), GNUNET_i2s (&closure->peer), status);
151 } 152 }
153 GNUNET_SCHEDULER_shutdown();
152} 154}
153 155
154/** 156/**