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 B56EE172BD for ; Mon, 13 Apr 2015 05:59:36 +0000 (UTC) Received: (qmail 51199 invoked by uid 500); 13 Apr 2015 05:59:27 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 51123 invoked by uid 500); 13 Apr 2015 05:59:27 -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 51113 invoked by uid 99); 13 Apr 2015 05:59:27 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Apr 2015 05:59:27 +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 0FCB2AC00B7 for ; Mon, 13 Apr 2015 05:59:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1673113 - /httpd/httpd/trunk/modules/loggers/mod_logio.c Date: Mon, 13 Apr 2015 05:59:26 -0000 To: cvs@httpd.apache.org From: jailletc36@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150413055927.0FCB2AC00B7@hades.apache.org> Author: jailletc36 Date: Mon Apr 13 05:59:26 2015 New Revision: 1673113 URL: http://svn.apache.org/r1673113 Log: Use 'unsigned int' in bitfield Modified: httpd/httpd/trunk/modules/loggers/mod_logio.c Modified: httpd/httpd/trunk/modules/loggers/mod_logio.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/loggers/mod_logio.c?rev=1673113&r1=1673112&r2=1673113&view=diff ============================================================================== --- httpd/httpd/trunk/modules/loggers/mod_logio.c (original) +++ httpd/httpd/trunk/modules/loggers/mod_logio.c Mon Apr 13 05:59:26 2015 @@ -49,11 +49,11 @@ typedef struct logio_config_t { apr_off_t bytes_last_request; apr_time_t ttfb; request_rec *r; /* Use for TTFB only */ - int first_byte_seen:1; + unsigned int first_byte_seen:1; } logio_config_t; typedef struct logio_dirconf_t { - int track_ttfb:1; + unsigned int track_ttfb:1; } logio_dirconf_t; /*