Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:32736 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 62928 invoked by uid 1010); 12 Oct 2007 07:19:35 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 62913 invoked from network); 12 Oct 2007 07:19:35 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Oct 2007 07:19:35 -0000 Authentication-Results: pb1.pair.com header.from=martin@divbyzero.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=martin@divbyzero.net; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain divbyzero.net from 80.237.234.119 cause and error) X-PHP-List-Original-Sender: martin@divbyzero.net X-Host-Fingerprint: 80.237.234.119 mx.bauer-kirch.de Linux 2.4/2.6 Received: from [80.237.234.119] ([80.237.234.119:49813] helo=mx.bauer-kirch.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 79/2A-27608-DFF1F074 for ; Fri, 12 Oct 2007 03:19:32 -0400 Received: by mx.bauer-kirch.de with ESMTP id 1IgEnj-00029C-9N for ; Fri, 12 Oct 2007 09:19:15 +0200 Date: Fri, 12 Oct 2007 09:19:15 +0200 To: internals@lists.php.net Message-ID: <20071012071915.GA2952@trior.divbyzero.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline User-Agent: Mutt (Cray UniCOS) Subject: Stray \ in ext/mysql/php_mysql.c From: martin@divbyzero.net (Martin Jansen) --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline When building HEAD, GCC complains about a stray backslash in ext/mysql/php_mysql.c. The attached patch fixes this. - Martin --zYM0uCDKw75PZbzx Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="mysql-stray-backslash.patch" Index: php_mysql.c =================================================================== RCS file: /repository/php-src/ext/mysql/php_mysql.c,v retrieving revision 1.244 diff -u -r1.244 php_mysql.c --- php_mysql.c 7 Oct 2007 05:15:04 -0000 1.244 +++ php_mysql.c 12 Oct 2007 07:16:35 -0000 @@ -1989,7 +1989,7 @@ #else #define IS_BINARY_DATA(f) (((f)->type == MYSQL_TYPE_TINY_BLOB || (f)->type == MYSQL_TYPE_BLOB || \ (f)->type == MYSQL_TYPE_MEDIUM_BLOB || (f)->type == MYSQL_TYPE_LONG_BLOB || \ - (f)->type == MYSQL_TYPE_VAR_STRING || \ (f)->type == MYSQL_TYPE_VARCHAR || \ + (f)->type == MYSQL_TYPE_VAR_STRING || (f)->type == MYSQL_TYPE_VARCHAR || \ (f)->type == MYSQL_TYPE_STRING)&& (f)->charsetnr == MYSQL_BINARY_CHARSET_NR) #endif --zYM0uCDKw75PZbzx--