Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:14310 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15090 invoked by uid 1010); 7 Jan 2005 20:05:32 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 14937 invoked from network); 7 Jan 2005 20:05:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Jan 2005 20:05:30 -0000 X-Host-Fingerprint: 64.233.170.195 rproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.170.195:37631] helo=rproxy.gmail.com) by pb1.pair.com (ecelerity HEAD (r4049:4050)) with SMTP id A4/EB-64113-68BEED14 for ; Fri, 07 Jan 2005 15:05:26 -0500 Received: by rproxy.gmail.com with SMTP id g11so271147rne for ; Fri, 07 Jan 2005 12:05:24 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=nIzZGP1wuRbHRlRUciJ26h3fID/V6V4s2UIvBM3aLox1Rk6ygbAcBTp+ZHyUwPsrWSVECtBssYVC6Oa0AO2hOVIdPxSOG//UiRsIEvkXjGERY2vRJWh11Ymny3hJUTsB4N7k09rNFXfsfUIaxlx9hykHjor+tjpNvcOkRrifPS4= Received: by 10.38.10.30 with SMTP id 30mr118959rnj; Fri, 07 Jan 2005 12:05:24 -0800 (PST) Received: by 10.38.81.38 with HTTP; Fri, 7 Jan 2005 12:05:24 -0800 (PST) Message-ID: <65df911e050107120574b77d96@mail.gmail.com> Date: Sat, 8 Jan 2005 03:05:24 +0700 Reply-To: Mikael Fern To: internals@lists.php.net Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: duplicate sapi inclusion From: mikaelf@gmail.com (Mikael Fern) maybe this is not an important note, but i notice that in ext/standard/head.c, SAPI.h is included twice. the duplicate inclusion can be found for all branches and head. File: ext/standard/head.c #include "php.h" #include "ext/standard/php_standard.h" #include "SAPI.h" #include "php_main.h" #include "head.h" #include "SAPI.h" --> should be omitted? regards, --