aboutsummaryrefslogtreecommitdiff
path: root/src/util/helper.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-07-17 19:09:02 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-07-17 19:09:02 +0000
commit89daff335a418fb67ce8ea4d3e1e128e96d19877 (patch)
tree3438c43bd31ef7ffa7827552f56bee52cba80d45 /src/util/helper.c
parent9761f2065f0ed797d0133388b94ee8e169ab6013 (diff)
downloadgnunet-89daff335a418fb67ce8ea4d3e1e128e96d19877.tar.gz
gnunet-89daff335a418fb67ce8ea4d3e1e128e96d19877.zip
helper exception callback lesser parameters
Diffstat (limited to 'src/util/helper.c')
-rw-r--r--src/util/helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/helper.c b/src/util/helper.c
index 3fe3705b1..82b94aa2f 100644
--- a/src/util/helper.c
+++ b/src/util/helper.c
@@ -256,7 +256,7 @@ helper_read (void *cls,
256 STRERROR (errno)); 256 STRERROR (errno));
257 if (NULL != h->exp_cb) 257 if (NULL != h->exp_cb)
258 { 258 {
259 h->exp_cb (h->cb_cls, h); 259 h->exp_cb (h->cb_cls);
260 GNUNET_HELPER_stop (h); 260 GNUNET_HELPER_stop (h);
261 return; 261 return;
262 } 262 }
@@ -275,7 +275,7 @@ helper_read (void *cls,
275 h->binary_name); 275 h->binary_name);
276 if (NULL != h->exp_cb) 276 if (NULL != h->exp_cb)
277 { 277 {
278 h->exp_cb (h->cb_cls, h); 278 h->exp_cb (h->cb_cls);
279 GNUNET_HELPER_stop (h); 279 GNUNET_HELPER_stop (h);
280 return; 280 return;
281 } 281 }
@@ -300,7 +300,7 @@ helper_read (void *cls,
300 h->binary_name); 300 h->binary_name);
301 if (NULL != h->exp_cb) 301 if (NULL != h->exp_cb)
302 { 302 {
303 h->exp_cb (h->cb_cls, h); 303 h->exp_cb (h->cb_cls);
304 GNUNET_HELPER_stop (h); 304 GNUNET_HELPER_stop (h);
305 return; 305 return;
306 } 306 }