Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 57644200D06 for ; Mon, 11 Sep 2017 08:16:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 55FDB1609C0; Mon, 11 Sep 2017 06:16:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 931AC1609BD for ; Mon, 11 Sep 2017 08:16:03 +0200 (CEST) Received: (qmail 11674 invoked by uid 500); 11 Sep 2017 06:16:02 -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 11665 invoked by uid 99); 11 Sep 2017 06:16:02 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Sep 2017 06:16:02 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 5D0E73A004A for ; Mon, 11 Sep 2017 06:16:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1807994 - /httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Date: Mon, 11 Sep 2017 06:15:58 -0000 To: cvs@httpd.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170911061601.5D0E73A004A@svn01-us-west.apache.org> archived-at: Mon, 11 Sep 2017 06:16:04 -0000 Author: rpluem Date: Mon Sep 11 06:15:58 2017 New Revision: 1807994 URL: http://svn.apache.org/viewvc?rev=1807994&view=rev Log: * We need i if we have HAVE_SSL_CONF_CMD defined Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_config.c?rev=1807994&r1=1807993&r2=1807994&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Mon Sep 11 06:15:58 2017 @@ -2706,6 +2706,10 @@ static void modssl_auth_ctx_dump(modssl_ static void modssl_ctx_dump(modssl_ctx_t *ctx, apr_pool_t *p, int proxy, apr_file_t *out, const char *indent, const char **psep) { +#ifdef HAVE_SSL_CONF_CMD + int i; +#endif + if (ctx->protocol_set) { DMP_STRING(proxy? "SSLProxyProtocol" : "SSLProtocol", protocol_str(ctx->protocol, p)); }