gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r30935 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r30935 - gnunet/src/util
Date: Thu, 28 Nov 2013 15:13:31 +0100

Author: harsha
Date: 2013-11-28 15:13:31 +0100 (Thu, 28 Nov 2013)
New Revision: 30935

Modified:
   gnunet/src/util/signal.c
Log:
- fix


Modified: gnunet/src/util/signal.c
===================================================================
--- gnunet/src/util/signal.c    2013-11-28 13:53:39 UTC (rev 30934)
+++ gnunet/src/util/signal.c    2013-11-28 14:13:31 UTC (rev 30935)
@@ -121,7 +121,7 @@
 {
   struct GNUNET_SIGNAL_Context *ctx;
   
-  for (ctx = sc_head; NULL != sc_head; ctx = ctx->next)
+  for (ctx = sc_head; NULL != ctx; ctx = ctx->next)
   {
     if (sig != ctx->sig)
       continue;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]