From fabf3f661579710d543db46718ec627a53bad61f Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering@redhat.com>
Date: Mon, 17 Aug 2009 10:25:42 +0200
Subject: guestfsd: don't ignore failed write-to-socket

* daemon/proto.c (reply): Fix typo that would cause us to ignore
failed write-to-socket.
---
 daemon/proto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'daemon')

diff --git a/daemon/proto.c b/daemon/proto.c
index 709f978f..9b33902f 100644
--- a/daemon/proto.c
+++ b/daemon/proto.c
@@ -288,7 +288,7 @@ reply (xdrproc_t xdrp, char *ret)
     fprintf (stderr, "xwrite failed\n");
     exit (1);
   }
-  if (xwrite (sock, buf, len) == len) {
+  if (xwrite (sock, buf, len) == -1) {
     fprintf (stderr, "xwrite failed\n");
     exit (1);
   }
-- 
cgit