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 | b8ecb0c4afb78c29df0977ee89dff9b63101fe77 (patch) | |
tree | 426918ed514442670166aa4407e29f9c0d349eba | |
parent | cd0c221f82bce19adc556b1cf4d49604199407de (diff) | |
download | php-git-b8ecb0c4afb78c29df0977ee89dff9b63101fe77.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"; } ?> |