On Thu, May 19, 2016 at 11:45 PM, David Turner [off-list ref] wrote:
+int packet_flush_gently(int fd)
+{
+ packet_trace("0000", 4, 1);
+ return write_in_full(fd, "0000", 4) != 4;
+}
The return value convention here is a bit weird, isn't it? Usually we
have "zero good, minus one (or negative) bad" or "zero bad, positive
good". This one goes "zero good, one bad". Same goes for the other
_gently() function.
--
Duy