From 0f15f36dd081829f6466b29e6088f3ce379595e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philipp=20T=C3=B6lke?= Date: Wed, 27 Jul 2011 07:28:14 +0000 Subject: [PATCH] reverse logic --- src/vpn/gnunet-daemon-vpn-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vpn/gnunet-daemon-vpn-helper.c b/src/vpn/gnunet-daemon-vpn-helper.c index 75a6b2bad..875cfb440 100644 --- a/src/vpn/gnunet-daemon-vpn-helper.c +++ b/src/vpn/gnunet-daemon-vpn-helper.c @@ -443,6 +443,6 @@ void write_to_helper(void* buf, size_t len) void schedule_helper_write(struct GNUNET_TIME_Relative time, void* cls) { - if (GNUNET_SCHEDULER_NO_TASK == shs_task) return; + if (GNUNET_SCHEDULER_NO_TASK != shs_task) return; GNUNET_SCHEDULER_add_write_file (time, helper_handle->fh_to_helper, &helper_write, cls); } -- 2.25.1