diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-12-08 18:14:54 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-12-08 18:14:54 +0100 |
commit | a45a3204a0b093d6899249b18808692e3f8ac863 (patch) | |
tree | 8922112c324fda189a0571fd1bcc2685d21a1474 /src/mds-echo.c | |
parent | whenever fail_if gotos to the failure clause, print whence (diff) | |
download | mds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.gz mds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.bz2 mds-a45a3204a0b093d6899249b18808692e3f8ac863.tar.xz |
replace all goto pfail with fail_if, so that we can take whence it failed
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-echo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mds-echo.c b/src/mds-echo.c index 31e8b86..e7fc4d4 100644 --- a/src/mds-echo.c +++ b/src/mds-echo.c @@ -233,8 +233,8 @@ int master_loop(void) } else if (errno == EINTR) continue; - else if (errno != ECONNRESET) - goto pfail; + else + fail_if (errno != ECONNRESET); eprint("lost connection to server."); mds_message_destroy(&received); |