summaryrefslogtreecommitdiff
path: root/bin/ksh/mail.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-12-22 17:14:35 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-12-22 17:14:35 +0000
commit876705771ce25a4fde66ddfeeaed78e36c2522fa (patch)
tree5302300c6a77585e42ee9c9473fe0405e5eb5896 /bin/ksh/mail.c
parentd8ab4b6082e45f27eab20a66b1077ed25bcc3a30 (diff)
Use stdbool.h instead of rolling our own bools.
Diffstat (limited to 'bin/ksh/mail.c')
-rw-r--r--bin/ksh/mail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/mail.c b/bin/ksh/mail.c
index 22853ccb913..a65fe543238 100644
--- a/bin/ksh/mail.c
+++ b/bin/ksh/mail.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mail.c,v 1.13 2004/12/20 11:34:26 otto Exp $ */
+/* $OpenBSD: mail.c,v 1.14 2004/12/22 17:14:34 millert Exp $ */
/*
* Mailbox checking code by Robert J. Gibson, adapted for PD ksh by
@@ -188,7 +188,7 @@ mprintit(mbox_t *mbp)
if (!Flag(FSH))
#endif
/* Ignore setstr errors here (arbitrary) */
- setstr((vp = local("_", FALSE)), mbp->mb_path, KSH_RETURN_ERROR);
+ setstr((vp = local("_", false)), mbp->mb_path, KSH_RETURN_ERROR);
shellf("%s\n", substitute(mbp->mb_msg ? mbp->mb_msg : MBMESSAGE, 0));