diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-01-28 23:13:43 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-01-28 23:13:43 +0000 |
commit | 45019201d7419f83efd0b940e87cb7ba71b6c616 (patch) | |
tree | 622548539bba9e89efd75df4f46047c02b466300 /usr.sbin/smtpd/smtpd.h | |
parent | 3ff4470f4d8f41009e5b07ccfc9c0ec100b37cdd (diff) |
mta session state belongs to struct session, not struct batch, remove the
state field from struct batch and propagate the change
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index d6a76b1495c..a7e7917a1bf 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.55 2009/01/28 22:54:10 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.56 2009/01/28 23:13:42 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -484,7 +484,6 @@ struct batch { struct rule rule; - u_int8_t state; struct smtpd *env; char message_id[MAX_ID_SIZE]; |