diff options
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 0bfcc2cd34a..9cd19ee4789 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.92 2009/03/15 18:12:15 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.93 2009/03/15 19:15:25 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -457,9 +457,6 @@ struct message { u_int8_t retry; enum message_flags flags; enum message_status status; - - int mboxfd; - int messagefd; }; enum batch_status { @@ -617,6 +614,8 @@ struct session { TAILQ_HEAD(mxhostlist, mxhost) mxhosts; FILE *datafp; + int mboxfd; + int messagefd; }; struct smtpd { |