summaryrefslogtreecommitdiff
path: root/msg.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2008-07-18 16:37:28 +1000
committerNeilBrown <neilb@suse.de>2008-07-18 16:37:28 +1000
commiteb2c876f4deef9da9eda6359647e2f6ad2083957 (patch)
tree9379646d1f0fe2b9328fb52d1e1676ebf28b41b3 /msg.c
parent33af8567de2f7b353abb53a0f6e9cffdc136a622 (diff)
msg: add a timeout to ping_monitor
Though it should never bee needed, having a timeout in ping_monitor is a sensible safeguard. Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'msg.c')
-rw-r--r--msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/msg.c b/msg.c
index 123c0e55..78fd7f7e 100644
--- a/msg.c
+++ b/msg.c
@@ -173,11 +173,11 @@ int ping_monitor(char *devname)
return sfd;
/* try to ping existing socket */
- if (ack(sfd, 0) != 0)
+ if (ack(sfd, 20) != 0)
err = -1;
/* check the reply */
- if (!err && wait_reply(sfd, 0) != 0)
+ if (!err && wait_reply(sfd, 20) != 0)
err = -1;
close(sfd);