diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2012-01-19 22:35:22 +0000 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2012-01-19 22:35:22 +0000 |
| commit | a5c3078c3fe2e6b00effe86a60a64ce52937570c (patch) | |
| tree | bf276d1ab5b6da7e26839795cbf895745e2b4838 | |
| parent | cbdfc9315465a3936c645457c04806eea454a9df (diff) | |
| download | php-git-a5c3078c3fe2e6b00effe86a60a64ce52937570c.tar.gz | |
Missing ifdef here
Fixes bug 60811
| -rw-r--r-- | sapi/fpm/fpm/fpm_conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/fpm/fpm/fpm_conf.c b/sapi/fpm/fpm/fpm_conf.c index 61f066fc91..304076d35e 100644 --- a/sapi/fpm/fpm/fpm_conf.c +++ b/sapi/fpm/fpm/fpm_conf.c @@ -1171,7 +1171,9 @@ static void fpm_conf_ini_parser_include(char *inc, void *arg TSRMLS_DC) /* {{{ * { char *filename; int *error = (int *)arg;; +#ifdef HAVE_GLOB glob_t g; +#endif int i; if (!inc || !arg) return; |
