summaryrefslogtreecommitdiff
path: root/gnu/usr.sbin
diff options
context:
space:
mode:
authorAnders Magnusson <ragge@cvs.openbsd.org>2008-06-30 15:00:18 +0000
committerAnders Magnusson <ragge@cvs.openbsd.org>2008-06-30 15:00:18 +0000
commitb0df93a585b7f9d59a5f9c5f4f88f87c458ce5be (patch)
treeae5d83ddea235379a9d672342755021e51a5b6f0 /gnu/usr.sbin
parente4efcf85ededfc4e19429ae5afe2776c2fd1a234 (diff)
Use int instead if bool in the arguments to upd_qs(). Sendmail itself
uses -1, 0 and 1 which is one value too much for boolean. Ok krw@, millert@
Diffstat (limited to 'gnu/usr.sbin')
-rw-r--r--gnu/usr.sbin/sendmail/sendmail/sendmail.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.sbin/sendmail/sendmail/sendmail.h b/gnu/usr.sbin/sendmail/sendmail/sendmail.h
index cfa4a51c426..deb95950362 100644
--- a/gnu/usr.sbin/sendmail/sendmail/sendmail.h
+++ b/gnu/usr.sbin/sendmail/sendmail/sendmail.h
@@ -2642,7 +2642,7 @@ extern void unsetenv __P((char *));
/* update file system information: +/- some blocks */
#if SM_CONF_SHM
-extern void upd_qs __P((ENVELOPE *, bool, bool, char *));
+extern void upd_qs __P((ENVELOPE *, int, int, char *));
# define updfs(e, count, space, where) upd_qs(e, count, space, where)
#else /* SM_CONF_SHM */
# define updfs(e, count, space, where)