diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-03-19 20:27:50 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-03-19 20:27:50 +0000 |
commit | 24d087fb560500611230c7a9de4d3627c02f5e66 (patch) | |
tree | e3d959b2c27b8a6affd5967346a278d3c24dd846 /usr.sbin/smtpd/smtpd.h | |
parent | 7c8a2745e55513115df32d66f6f593de45b6488f (diff) |
make action_type == 0 mean A_INVALID, not A_RELAY; ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index de160ccd98f..40e6a030cea 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.94 2009/03/15 19:32:11 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.95 2009/03/19 20:27:49 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -336,6 +336,7 @@ struct opt { }; enum action_type { + A_INVALID, A_RELAY, A_RELAYVIA, A_MAILDIR, |