diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-03-15 19:32:12 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-03-15 19:32:12 +0000 |
commit | db787728ab081e9d84b26e1a98431526e1420c27 (patch) | |
tree | 007e0982bc7220c430950974142d89decb587d7a /usr.sbin/smtpd/ssl.c | |
parent | b6b944aa351d07fa3a8e68b0f477b46eac779338 (diff) |
since we are going to share code in smtp sessions and mta sessions, we need
to also share the statistics structure, still being worked on
Diffstat (limited to 'usr.sbin/smtpd/ssl.c')
-rw-r--r-- | usr.sbin/smtpd/ssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/ssl.c b/usr.sbin/smtpd/ssl.c index 16813e2e4c4..f151a94af75 100644 --- a/usr.sbin/smtpd/ssl.c +++ b/usr.sbin/smtpd/ssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.c,v 1.10 2009/02/05 21:25:19 gilles Exp $ */ +/* $OpenBSD: ssl.c,v 1.11 2009/03/15 19:32:11 gilles Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -55,7 +55,7 @@ void ssl_client_init(struct session *); extern void bufferevent_read_pressure_cb(struct evbuffer *, size_t, size_t, void *); -extern struct s_smtp s_smtp; +extern struct s_session s_smtp; void ssl_connect(int fd, short event, void *p) |