diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-03-10 22:33:27 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-03-10 22:33:27 +0000 |
commit | c6977743257ce3292ee135a68fdf73453058c074 (patch) | |
tree | c9646741c7f6cbf53c2651d0e9c57cdb22b28ad8 /usr.sbin/smtpd/smtpd.h | |
parent | d977d409e2c564f9087b0e12e9b0c5ce98d64414 (diff) |
implement basic logging, needs more work; ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 0c1ba8fe063..8a6efc26dd3 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.89 2009/03/09 23:35:04 jacekm Exp $ */ +/* $OpenBSD: smtpd.h,v 1.90 2009/03/10 22:33:26 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -610,7 +610,7 @@ struct session { int s_buflen; struct timeval s_tv; struct message s_msg; - u_int32_t rcptcount; + size_t rcptcount; struct session_auth_req s_auth; |