From 4608fd6e3f8336ff635e2842dc8f0f0c73445de1 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Fri, 24 Oct 2003 05:34:16 +0000 Subject: [PATCH] MFH #25174 --- pear/OS/Guess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1