gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: kill goto


From: gnunet
Subject: [taler-exchange] branch master updated: kill goto
Date: Mon, 20 Jan 2020 01:44:16 +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 3fffb93e kill goto
3fffb93e is described below

commit 3fffb93e53e6a22ebcda1389f675870a10564211
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Jan 20 01:44:14 2020 +0100

    kill goto
---
 src/exchange/taler-exchange-httpd_keystate.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd_keystate.c 
b/src/exchange/taler-exchange-httpd_keystate.c
index 76471fff..d70c0e7f 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -2200,7 +2200,6 @@ TEH_KS_loop (void)
     char c;
     ssize_t res;
 
-read_again:
     errno = 0;
     res = read (reload_pipe[0],
                 &c,
@@ -2212,7 +2211,7 @@ read_again:
       break;
     }
     if (EINTR == errno)
-      goto read_again;
+      continue;
     switch (c)
     {
     case SIGUSR1:

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



reply via email to

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