diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2010-05-27 11:18:35 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2010-05-27 11:18:35 +0000 |
commit | e0da571438a4617b05bc83449a1a4b6266a54808 (patch) | |
tree | 5440d5d4d2a09d447b24ab23e46b00876bff530b | |
parent | 89daa86ab6713e3ec53f677d12a1e58783f605a7 (diff) |
struct opt as not used anywhere else, kill it, we can reintroduce it later
if we feel a need for it
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 0b82b0fb827..421a38cba2c 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.183 2010/05/27 11:17:29 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.184 2010/05/27 11:18:34 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -311,16 +311,6 @@ struct cond { enum cond_type c_type; }; -enum opt_type { - O_RWUSER, /* rewrite user */ - O_RWDOMAIN, /* rewrite domain */ -}; - -struct opt { - TAILQ_ENTRY(opt) o_entry; - enum opt_type o_type; -}; - enum action_type { A_INVALID, A_RELAY, |