gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: -fix FTBFS


From: gnunet
Subject: [taler-exchange] branch master updated: -fix FTBFS
Date: Thu, 02 Dec 2021 14:35:47 +0100

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new ae866fc4 -fix FTBFS
ae866fc4 is described below

commit ae866fc45d50a11fce4557500611bee10704fb4a
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Dec 2 14:35:45 2021 +0100

    -fix FTBFS
---
 src/exchange/taler-exchange-httpd.c      | 4 ++--
 src/exchange/taler-exchange-httpd.h      | 2 +-
 src/exchange/taler-exchange-httpd_keys.c | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd.c 
b/src/exchange/taler-exchange-httpd.c
index ffd61873..b948c315 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -130,7 +130,7 @@ static int connection_close;
 /**
  * -I command-line flag given?
  */
-int TEH_check_invariants;
+int TEH_check_invariants_flag;
 
 /**
  * True if we should commit suicide once all active
@@ -1911,7 +1911,7 @@ main (int argc,
     GNUNET_GETOPT_option_flag ('I',
                                "check-invariants",
                                "enable expensive invariant checks",
-                               &TEH_check_invariants),
+                               &TEH_check_invariants_flag),
     GNUNET_GETOPT_option_flag ('r',
                                "allow-reuse-address",
                                "allow multiple HTTPDs to listen to the same 
port",
diff --git a/src/exchange/taler-exchange-httpd.h 
b/src/exchange/taler-exchange-httpd.h
index 9a739501..07f6b023 100644
--- a/src/exchange/taler-exchange-httpd.h
+++ b/src/exchange/taler-exchange-httpd.h
@@ -147,7 +147,7 @@ extern char *TEH_exchange_directory;
 /**
  * -I command-line flag given?
  */
-extern int TEH_check_invariants;
+extern int TEH_check_invariants_flag;
 
 /**
  * Are clients allowed to request /keys for times other than the
diff --git a/src/exchange/taler-exchange-httpd_keys.c 
b/src/exchange/taler-exchange-httpd_keys.c
index 1029d200..86366eaf 100644
--- a/src/exchange/taler-exchange-httpd_keys.c
+++ b/src/exchange/taler-exchange-httpd_keys.c
@@ -549,7 +549,7 @@ TEH_check_invariants ()
 {
   struct TEH_KeyStateHandle *ksh;
 
-  if (0 == TEH_check_invariants)
+  if (0 == TEH_check_invariants_flag)
     return;
   ksh = TEH_keys_get_state ();
   if (NULL == ksh)

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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