aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-echo.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-08 18:14:54 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-08 18:14:54 +0100
commita45a3204a0b093d6899249b18808692e3f8ac863 (patch)
tree8922112c324fda189a0571fd1bcc2685d21a1474 /src/mds-echo.c
parentwhenever fail_if gotos to the failure clause, print whence (diff)
downloadmds-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.c4
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);