]> granicus.if.org Git - php/commitdiff
- Comment unused function to avoid warnings
authorJerome Loyet <fat@php.net>
Fri, 1 Jun 2012 09:16:00 +0000 (11:16 +0200)
committerJerome Loyet <fat@php.net>
Fri, 1 Jun 2012 09:16:00 +0000 (11:16 +0200)
sapi/fpm/fpm/fpm_conf.c

index 1f3258f35fd952e929fc59514dff24ef6b90284e..dfe6792c058b7b2a2e2f4c33c9765c6bf5d52bce 100644 (file)
@@ -53,7 +53,9 @@
 
 static int fpm_conf_load_ini_file(char *filename TSRMLS_DC);
 static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset);
+#if 0 /* not used for now */
 static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset);
+#endif
 static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset);
 static char *fpm_conf_set_boolean(zval *value, void **config, intptr_t offset);
 static char *fpm_conf_set_string(zval *value, void **config, intptr_t offset);
@@ -242,6 +244,7 @@ static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset) /
 }
 /* }}} */
 
+#if 0 /* not used for now */
 static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset) /* {{{ */
 {
        char *val = Z_STRVAL_P(value);
@@ -257,6 +260,7 @@ static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset) /* {
        return NULL;
 }
 /* }}} */
+#endif
 
 static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset) /* {{{ */
 {