From: Marcus Boerger Date: Tue, 12 Nov 2002 09:09:55 +0000 (+0000) Subject: correct the last patch: make flock() a function again when it is missing X-Git-Tag: php-4.3.0RC1~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2de217740af4cffba4dbb8c94d323a9beb25894;p=php correct the last patch: make flock() a function again when it is missing #function name should be flock and not php_flock of cause --- diff --git a/ext/standard/flock_compat.c b/ext/standard/flock_compat.c index 92d2590662..03f7876909 100644 --- a/ext/standard/flock_compat.c +++ b/ext/standard/flock_compat.c @@ -41,7 +41,7 @@ #endif #ifndef HAVE_FLOCK -PHPAPI int php_flock(int fd, int operation) +PHPAPI int flock(int fd, int operation) { return php_flock(fd, operation); }