[25786] in Athena Bugs
Re: solaris 9.3.8: mozilla
daemon@ATHENA.MIT.EDU (John Hawkinson)
Fri Jul 9 23:15:30 2004
Date: Fri, 9 Jul 2004 23:10:30 -0400 (EDT)
Message-Id: <200407100310.i6A3AU5R003248@multics.mit.edu>
To: bugs@mit.edu
In-reply-to: "[25785] in Athena Bugs"
From: John Hawkinson <jhawk@mit.edu>
Errors-To: bugs-bounces@mit.edu
| if $moz_remote "ping()" >/dev/null 2>&3 |
| grep -v '^Error: Failed to find a running server\.$' >&2 ; then
| found_running=true
| else
| found_running=false
| fi
oops. I oversimplified accidently.
Line one should have been:
| if $moz_remote "ping()" 3>&1 >/dev/null 2>&3 |
But perhaps a better choice would be
$mozresult=`$moz_remote "ping()" 3>&1 >/dev/null 2>&3`
check $?, and then use $mozresult in the gdialog box to the user.
--jhawk