hholzgra                Tue Jan  1 18:13:14 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/mysqli mysqli_api.c 
  Log:
  fixed binary arithmetic (MF5.2)
  
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mysqli/mysqli_api.c?r1=1.118.2.22.2.16.2.10&r2=1.118.2.22.2.16.2.11&diff_format=u
Index: php-src/ext/mysqli/mysqli_api.c
diff -u php-src/ext/mysqli/mysqli_api.c:1.118.2.22.2.16.2.10 
php-src/ext/mysqli/mysqli_api.c:1.118.2.22.2.16.2.11
--- php-src/ext/mysqli/mysqli_api.c:1.118.2.22.2.16.2.10        Mon Dec 31 
07:17:10 2007
+++ php-src/ext/mysqli/mysqli_api.c     Tue Jan  1 18:13:14 2008
@@ -17,7 +17,7 @@
   |          Ulf Wendel <[EMAIL PROTECTED]>                                    
 |
   +----------------------------------------------------------------------+
 
-  $Id: mysqli_api.c,v 1.118.2.22.2.16.2.10 2007/12/31 07:17:10 sebastian Exp $ 
+  $Id: mysqli_api.c,v 1.118.2.22.2.16.2.11 2008/01/01 18:13:14 hholzgra Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -1626,7 +1626,7 @@
        /* remove some insecure options */
        flags &= ~CLIENT_MULTI_STATEMENTS;   /* don't allow multi_queries via 
connect parameter */
        if (PG(open_basedir) && PG(open_basedir)[0] != '\0') {
-               flags ^= CLIENT_LOCAL_FILES;
+               flags &= ~CLIENT_LOCAL_FILES;
        }
 
 #if !defined(HAVE_MYSQLND)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to