diff options
author | Jerome Loyet <fat@php.net> | 2012-06-01 11:16:00 +0200 |
---|---|---|
committer | Jerome Loyet <fat@php.net> | 2012-06-01 11:16:00 +0200 |
commit | 59e0930d37e2a559317e2c08ecfee5a84bde925d (patch) | |
tree | 604b7c01d28fde12e7af003468141f4fbf9b971e | |
parent | 1f5327a6022fedc1985d2daa6d189313d808b08b (diff) | |
download | php-git-59e0930d37e2a559317e2c08ecfee5a84bde925d.tar.gz |
- Comment unused function to avoid warnings
-rw-r--r-- | sapi/fpm/fpm/fpm_conf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/fpm/fpm/fpm_conf.c b/sapi/fpm/fpm/fpm_conf.c index 1f3258f35f..dfe6792c05 100644 --- a/sapi/fpm/fpm/fpm_conf.c +++ b/sapi/fpm/fpm/fpm_conf.c @@ -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) /* {{{ */ { |