Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C6F9D107F1 for ; Thu, 9 Jan 2014 22:41:56 +0000 (UTC) Received: (qmail 59695 invoked by uid 500); 9 Jan 2014 22:41:56 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 59613 invoked by uid 500); 9 Jan 2014 22:41:56 -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 59606 invoked by uid 99); 9 Jan 2014 22:41:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jan 2014 22:41:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED 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; Thu, 09 Jan 2014 22:41:53 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 000912388993; Thu, 9 Jan 2014 22:41:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1556975 - /httpd/mod_mbox/trunk/module-2.0/mod_mbox.h Date: Thu, 09 Jan 2014 22:41:32 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140109224133.000912388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Thu Jan 9 22:41:32 2014 New Revision: 1556975 URL: http://svn.apache.org/r1556975 Log: Revert order of message id and uri escaping. Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox.h Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox.h URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mod_mbox.h?rev=1556975&r1=1556974&r2=1556975&view=diff ============================================================================== --- httpd/mod_mbox/trunk/module-2.0/mod_mbox.h (original) +++ httpd/mod_mbox/trunk/module-2.0/mod_mbox.h Thu Jan 9 22:41:32 2014 @@ -159,7 +159,7 @@ const char *get_base_name(request_rec *r (s ? mbox_cntrl_escape(pool, ap_escape_html(pool, mbox_cte_decode_header(pool, s))) : "") #define MSG_ID_ESCAPE_OR_BLANK(pool, s) \ -(s ? ap_escape_uri(pool, mbox_msg_id_escape(pool, s)) : "") +(s ? mbox_msg_id_escape(pool, ap_escape_uri(pool, s)) : "") /* Backend functions */ apr_array_header_t *mbox_fetch_boxes_list(request_rec *r,