Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65802 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 50321 invoked from network); 13 Feb 2013 17:51:14 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Feb 2013 17:51:14 -0000 X-Host-Fingerprint: 83.153.85.71 cag06-7-83-153-85-71.fbx.proxad.net Received: from [83.153.85.71] ([83.153.85.71:8964] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7E/D7-03493-E82DB115 for ; Wed, 13 Feb 2013 12:51:11 -0500 Message-ID: <7E.D7.03493.E82DB115@pb1.pair.com> To: internals@lists.php.net Date: Wed, 13 Feb 2013 18:51:06 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Posted-By: 83.153.85.71 Subject: libxml bit field From: ard.biesheuvel@linaro.org (Ard Biesheuvel) Hey all, In commit http://git.php.net/?p=php-src.git;a=commitdiff;h=afe98b78 I just noticed two instances of the following: ctxt->options -= XML_PARSE_DTDLOAD; Shouldn't that be ctxt->options &= ~XML_PARSE_DTDLOAD; or am I missing something? -- Ard.