Fix the error message when reply body is too large (RHBZ#509597).
authorRichard Jones <rjones@redhat.com>
Sat, 27 Mar 2010 11:02:03 +0000 (11:02 +0000)
committerRichard Jones <rjones@redhat.com>
Sat, 27 Mar 2010 11:11:30 +0000 (11:11 +0000)
daemon/proto.c

index 1ad9d11..0002d80 100644 (file)
@@ -289,7 +289,7 @@ reply (xdrproc_t xdrp, char *ret)
      * we want to return an error message instead. (RHBZ#509597).
      */
     if (!(*xdrp) (&xdr, ret)) {
-      reply_with_perror ("guestfsd: failed to encode reply body\n");
+      reply_with_error ("guestfsd: failed to encode reply body\n(maybe the reply exceeds the maximum message size in the protocol?)");
       xdr_destroy (&xdr);
       return;
     }