diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2010-04-20 18:18:37 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2010-04-20 18:18:37 +0000 |
commit | b83236b78822755645349c74ac0303371113ddab (patch) | |
tree | d3092d1e3bec7bce19567ad719a7c85278c8d820 /usr.sbin | |
parent | 9e663e93a646c61c6c68ed8f8582573429e8c48e (diff) |
Use correct type for ``mda_id'', ie. match with type used in imsg header.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/mda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/mda.c b/usr.sbin/smtpd/mda.c index a9b52bdb8bb..475a488036a 100644 --- a/usr.sbin/smtpd/mda.c +++ b/usr.sbin/smtpd/mda.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mda.c,v 1.40 2010/04/20 15:34:56 jacekm Exp $ */ +/* $OpenBSD: mda.c,v 1.41 2010/04/20 18:18:36 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -46,7 +46,7 @@ void mda_store(struct mda_session *); void mda_store_event(int, short, void *); struct mda_session *mda_lookup(struct smtpd *, u_int32_t); -int mda_id; +u_int32_t mda_id; void mda_imsg(struct smtpd *env, struct imsgev *iev, struct imsg *imsg) |