diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-19 11:57:36 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2012-09-19 11:57:36 +0000 |
commit | da98b82556393439683e47a3f51aa544f42da1b0 (patch) | |
tree | c73c82e344c5b366e31cf2aa47fd6bad9da19ec4 /usr.sbin/smtpd/smtpd.h | |
parent | 77a2f7f5fbb26fa4ac3c62390285c1436233c0e0 (diff) |
remove IS_RELAY and IS_MAILBOX macros.
ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index c6657d5e5b7..654308741f7 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.358 2012/09/19 10:10:30 eric Exp $ */ +/* $OpenBSD: smtpd.h,v 1.359 2012/09/19 11:57:35 eric Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -302,9 +302,6 @@ enum action_type { A_MDA }; -#define IS_MAILBOX(x) ((x).r_action == A_MAILDIR || (x).r_action == A_MBOX || (x).r_action == A_FILENAME) -#define IS_RELAY(x) ((x).r_action == A_RELAY || (x).r_action == A_RELAYVIA) - struct rule { TAILQ_ENTRY(rule) r_entry; char r_tag[MAX_TAG_SIZE]; |