Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 74134 invoked from network); 21 Nov 2005 23:26:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Nov 2005 23:26:11 -0000 Received: (qmail 74157 invoked by uid 500); 21 Nov 2005 23:26:10 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 73961 invoked by uid 500); 21 Nov 2005 23:26:09 -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 73950 invoked by uid 99); 21 Nov 2005 23:26:09 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 21 Nov 2005 15:26:09 -0800 Received: (qmail 74043 invoked by uid 65534); 21 Nov 2005 23:25:48 -0000 Message-ID: <20051121232548.74042.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r348014 - /httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c Date: Mon, 21 Nov 2005 23:25:48 -0000 To: cvs@httpd.apache.org From: bnicholes@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: bnicholes Date: Mon Nov 21 15:25:44 2005 New Revision: 348014 URL: http://svn.apache.org/viewcvs?rev=348014&view=rev Log: Fix a problem with the HTTPS CGI variable not getting set for secure requests. Needed to readd the port and address on every restart whether or not the listen port is being created or resused. Modified: httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c Modified: httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c?rev=348014&r1=348013&r2=348014&view=diff ============================================================================== --- httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c (original) +++ httpd/httpd/trunk/modules/arch/netware/mod_nw_ssl.c Mon Nov 21 15:25:44 2005 @@ -522,13 +522,13 @@ walk = &(*walk)->next; } + apr_table_add(sc->sltable, ports, addr); + /* If we found a pre-existing listen socket record, then there is no need to create a new secure listen socket record. */ if (found_listener) { return NULL; } - - apr_table_add(sc->sltable, ports, addr); new->local_addr.sin_port = htons(port); new->fd = -1;