gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-twister] branch master updated: fix boolean operator


From: gnunet
Subject: [GNUnet-SVN] [taler-twister] branch master updated: fix boolean operator
Date: Sat, 15 Jun 2019 00:05:57 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository twister.

The following commit(s) were added to refs/heads/master by this push:
     new 93c3983  fix boolean operator
93c3983 is described below

commit 93c3983b378faaf56d9b74df833c45554c779d47
Author: Marcello Stanisci <address@hidden>
AuthorDate: Sat Jun 15 00:05:52 2019 +0200

    fix boolean operator
---
 src/twister/taler-twister-service.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/twister/taler-twister-service.c 
b/src/twister/taler-twister-service.c
index b891715..bca3b7e 100644
--- a/src/twister/taler-twister-service.c
+++ b/src/twister/taler-twister-service.c
@@ -2698,7 +2698,7 @@ handle_flip_path_dl (void *cls,
 
   tailsize = ntohs (src->header.size) - sizeof (*src);
 
-  if (tailsize == GNUNET_STRINGS_buffer_tokenize
+  if (tailsize != GNUNET_STRINGS_buffer_tokenize
       ((const char *) &src[1],
        tailsize,
        1,
@@ -2755,7 +2755,7 @@ handle_flip_path_ul (void *cls,
 
   tailsize = ntohs (src->header.size) - sizeof (*src);
 
-  if (tailsize == GNUNET_STRINGS_buffer_tokenize
+  if (tailsize != GNUNET_STRINGS_buffer_tokenize
     ((const char *) &src[1],
      tailsize,
      1,
@@ -2800,7 +2800,7 @@ handle_delete_path (void *cls,
 
   tailsize = ntohs (src->header.size) - sizeof (*src);
 
-  if (tailsize == GNUNET_STRINGS_buffer_tokenize
+  if (tailsize != GNUNET_STRINGS_buffer_tokenize
     ((const char *) &src[1],
      tailsize,
      1,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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