diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-09-23 09:40:40 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-09-23 09:40:40 +0000 |
commit | 1db1103630e78eecd99203936478f1122c080290 (patch) | |
tree | 590399c6c60489b59a7c3da7d7d197f8d95450d6 /usr.sbin/smtpd/smtpd.h | |
parent | 912d1c2733ea9814250621b8ef0192d17275b7f4 (diff) |
Plug memleak.
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index ea7cc42b9a6..f86c14ec146 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.143 2009/09/15 16:50:06 jacekm Exp $ */ +/* $OpenBSD: smtpd.h,v 1.144 2009/09/23 09:40:39 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -451,8 +451,8 @@ struct batch { struct message message; TAILQ_HEAD(, message) messages; - int mboxfd; - int datafd; + FILE *mboxfp; + FILE *datafp; int cleanup_parent; }; |