Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 27937 invoked from network); 28 Oct 2009 14:01:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Oct 2009 14:01:19 -0000 Received: (qmail 69649 invoked by uid 500); 28 Oct 2009 14:01:19 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 69568 invoked by uid 500); 28 Oct 2009 14:01:19 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 69559 invoked by uid 99); 28 Oct 2009 14:01:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Oct 2009 14:01:19 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Oct 2009 14:01:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BFFF923888FF; Wed, 28 Oct 2009 14:00:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r830546 - /httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c Date: Wed, 28 Oct 2009 14:00:53 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091028140053.BFFF923888FF@eris.apache.org> Author: jorton Date: Wed Oct 28 14:00:53 2009 New Revision: 830546 URL: http://svn.apache.org/viewvc?rev=830546&view=rev Log: * modules/ssl/ssl_util_stapling.c (stapling_cb): Use mySrvFromConn(), thanks to rpluem. Modified: httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c Modified: httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c?rev=830546&r1=830545&r2=830546&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_util_stapling.c Wed Oct 28 14:00:53 2009 @@ -573,8 +573,7 @@ static int stapling_cb(SSL *ssl, void *arg) { conn_rec *conn = (conn_rec *)SSL_get_app_data(ssl); - server_rec *s = conn->base_server; - + server_rec *s = mySrvFromConn(conn); SSLSrvConfigRec *sc = mySrvConfig(s); SSLConnRec *sslconn = myConnConfig(conn); modssl_ctx_t *mctx = myCtxConfig(sslconn, sc);