From 1623364627465c6d4b736c33a745c56794cf0a1f Mon Sep 17 00:00:00 2001
From: Mark Tompsett <mtompset@hotmail.com>
Date: Fri, 12 Oct 2012 14:29:59 +0800
Subject: [PATCH] Bug 8910 - silent warnings triggered in about.pl
Content-Type: text/plain; charset="utf-8"

In order to detect the apache version, there are multiple
commands used. These may not all exist, which triggers error log
entries. By simply adding " 2> /dev/null", the errors are no
longer generated.
---
 about.pl |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/about.pl b/about.pl
index 3296182..3c641b3 100755
--- a/about.pl
+++ b/about.pl
@@ -55,8 +55,8 @@ if ($^O ne 'VMS') {
 }
 my $perlVersion   = $];
 my $mysqlVersion  = `mysql -V`;
-my $apacheVersion = `httpd -v`;
-$apacheVersion = `httpd2 -v` unless $apacheVersion;
+my $apacheVersion = `httpd -v 2> /dev/null`;
+$apacheVersion = `httpd2 -v 2> /dev/null` unless $apacheVersion;
 $apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion;
 my $zebraVersion = `zebraidx -V`;
 
-- 
1.7.9.5