summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pear/OS/Guess.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/OS/Guess.php b/pear/OS/Guess.php
index c6852fef25..e34d9cf2a8 100644
--- a/pear/OS/Guess.php
+++ b/pear/OS/Guess.php
@@ -176,7 +176,7 @@ class OS_Guess
}
pclose($cpp);
unlink($tmpfile);
- if (!($major && $minor) && file_exists('/lib/libc.so.6')) {
+ if (!($major && $minor) && is_link('/lib/libc.so.6')) {
// Let's try reading the libc.so.6 symlink
if (ereg('^libc-([.*])\.so$', basename(readlink('/lib/libc.so.6')), $matches)) {
list($major, $minor) = explode('.', $matches);