summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-08-20 18:13:50 +0000
committerBrian Somers <brian@FreeBSD.org>2001-08-20 18:13:50 +0000
commitb632f81aaa2bf016abe7bb770101e57c37aa0dc8 (patch)
tree720c942c988d2e2288a20599f6f57d466477d489
parentfd374ac8a734684519e7debe27a0668afaa026f2 (diff)
Notes
-rw-r--r--libexec/rlogind/rlogind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rlogind/rlogind.c b/libexec/rlogind/rlogind.c
index 2719d0962ee5..1dc825295132 100644
--- a/libexec/rlogind/rlogind.c
+++ b/libexec/rlogind/rlogind.c
@@ -555,7 +555,7 @@ fatal(f, msg, syserr)
msg, strerror(errno));
else
len = snprintf(bp, sizeof(buf), "rlogind: %s.\r\n", msg);
- if (len == -1)
+ if (len < 0)
len = 0;
(void) write(f, buf, bp + len - buf);
exit(1);