Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7FFF7182D5 for ; Thu, 11 Jun 2015 16:14:47 +0000 (UTC) Received: (qmail 46024 invoked by uid 500); 11 Jun 2015 16:14:47 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 45995 invoked by uid 500); 11 Jun 2015 16:14:47 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 45985 invoked by uid 99); 11 Jun 2015 16:14:47 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jun 2015 16:14:47 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 48313AC035C for ; Thu, 11 Jun 2015 16:14:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1684938 - /subversion/trunk/subversion/mod_dav_svn/util.c Date: Thu, 11 Jun 2015 16:14:47 -0000 To: commits@subversion.apache.org From: ivan@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150611161447.48313AC035C@hades.apache.org> Author: ivan Date: Thu Jun 11 16:14:46 2015 New Revision: 1684938 URL: http://svn.apache.org/r1684938 Log: * subversion/mod_dav_svn/util.c (request_body_to_string): APR_OFF_FMT to log variable of apr_off_t, instead of casting to unsigned long. Modified: subversion/trunk/subversion/mod_dav_svn/util.c Modified: subversion/trunk/subversion/mod_dav_svn/util.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/util.c?rev=1684938&r1=1684937&r2=1684938&view=diff ============================================================================== --- subversion/trunk/subversion/mod_dav_svn/util.c (original) +++ subversion/trunk/subversion/mod_dav_svn/util.c Thu Jun 11 16:14:46 2015 @@ -821,7 +821,7 @@ request_body_to_string(svn_string_t **re { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Request body is larger than the configured " - "limit of %lu", (unsigned long)limit_req_body); + "limit of %" APR_OFF_T_FMT, limit_req_body); result = HTTP_REQUEST_ENTITY_TOO_LARGE; goto cleanup; }