summaryrefslogtreecommitdiff
path: root/ext/posix
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-06-26 16:03:39 +0000
committerFelipe Pena <felipe@php.net>2010-06-26 16:03:39 +0000
commit80926568f19901678754d37e3b4039ad2b1ffb48 (patch)
tree4db512ba3f6f6f0dee9d09f71f7485f85b77c53b /ext/posix
parentbcda2ac012f98810c0ffb0dd92e6614acc7657c6 (diff)
downloadphp-git-80926568f19901678754d37e3b4039ad2b1ffb48.tar.gz
- Fixed bug #52183 (Reflectionfunction reports invalid number of arguments for function aliases)
Diffstat (limited to 'ext/posix')
-rw-r--r--ext/posix/posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c
index 7252e2f0cd..d8e2e71f1d 100644
--- a/ext/posix/posix.c
+++ b/ext/posix/posix.c
@@ -295,7 +295,7 @@ const zend_function_entry posix_functions[] = {
#endif
PHP_FE(posix_get_last_error, arginfo_posix_get_last_error)
- PHP_FALIAS(posix_errno, posix_get_last_error, NULL)
+ PHP_FALIAS(posix_errno, posix_get_last_error, arginfo_posix_get_last_error)
PHP_FE(posix_strerror, arginfo_posix_strerror)
#ifdef HAVE_INITGROUPS
PHP_FE(posix_initgroups, arginfo_posix_initgroups)