Commit:    a7d6cb2360fbfae782fe899086012ed8e291d744
Author:    Remi Collet <r...@php.net>         Thu, 2 May 2013 10:15:05 +0200
Parents:   ab117573cd6fef9b7df50e00df0cf2078b740b5c
Branches:  PHP-5.3 PHP-5.4 PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=a7d6cb2360fbfae782fe899086012ed8e291d744

Log:
unused variable

Changed paths:
  M  sapi/fpm/fpm/fpm_conf.c


Diff:
diff --git a/sapi/fpm/fpm/fpm_conf.c b/sapi/fpm/fpm/fpm_conf.c
index 25e2cc4..23641fe 100644
--- a/sapi/fpm/fpm/fpm_conf.c
+++ b/sapi/fpm/fpm/fpm_conf.c
@@ -1002,7 +1002,7 @@ static int fpm_conf_process_all_pools() /* {{{ */
                        nb_ext = 0;
 
                        /* find the number of extensions */
-                       while ((ext = strtok(limit_extensions, " \t"))) {
+                       while (strtok(limit_extensions, " \t")) {
                                limit_extensions = NULL;
                                nb_ext++;
                        }


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

Reply via email to