diff options
author | Ulf Wendel <uw@php.net> | 2011-09-06 16:37:45 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2011-09-06 16:37:45 +0000 |
commit | 1ffe46c0206d74b40dd961e4aaf7910ea3ffe4b0 (patch) | |
tree | 3b5731f1b39cd18c511d7443850843400b43d7dd | |
parent | 78b2f1c488b7be62bb699ca717f95b18dd77a6c3 (diff) | |
download | php-git-1ffe46c0206d74b40dd961e4aaf7910ea3ffe4b0.tar.gz |
Fixing SKIPIF
-rw-r--r-- | ext/posix/tests/posix_getpgid_error.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/posix/tests/posix_getpgid_error.phpt b/ext/posix/tests/posix_getpgid_error.phpt index e703b8fdc1..b15a3c39b2 100644 --- a/ext/posix/tests/posix_getpgid_error.phpt +++ b/ext/posix/tests/posix_getpgid_error.phpt @@ -2,7 +2,7 @@ Test posix_getpgid() function : error conditions --SKIPIF-- <?php -if((!extension_loaded("posix")) || (!function_exists(posix_getpgid))) { +if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) { print "skip - POSIX extension not loaded or posix_getpgid() does not exist"; } ?> |