diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2011-11-28 20:29:28 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2011-11-28 20:29:28 +0000 |
commit | 782ca313c57ce6984dfddd8a2dacb70b1ba66f40 (patch) | |
tree | 3b60b25ef9979477c4df80da45de080b42faf701 /usr.sbin/smtpd | |
parent | e32f25b06ef8fe6699c549f5c85a17afc8ac7650 (diff) |
fix STATE_COUNT count
ok eric@ gilles@
Diffstat (limited to 'usr.sbin/smtpd')
-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 9af4f9d6a38..a3eb0793579 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.254 2011/11/21 18:57:54 eric Exp $ */ +/* $OpenBSD: smtpd.h,v 1.255 2011/11/28 20:29:27 chl Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -474,7 +474,7 @@ enum session_state { S_DONE, S_QUIT }; -#define STATE_COUNT 18 +#define STATE_COUNT 19 struct ssl { SPLAY_ENTRY(ssl) ssl_nodes; |