jim 99/04/06 13:36:33
Modified: src/support apachectl
Log:
Minor nit. Possible portability concern, since
we don't use this format anyplace else AFAIK
Revision Changes Path
1.15 +1 -1 apache-1.3/src/support/apachectl
Index: apachectl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/apachectl,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- apachectl 1999/04/06 20:34:56 1.14
+++ apachectl 1999/04/06 20:36:33 1.15
@@ -50,7 +50,7 @@
# check for pidfile
if [ -f $PIDFILE ] ; then
PID=`cat $PIDFILE`
- if [ ! "x$PID" = "x" ] && kill -0 $PID 2>/dev/null ; then
+ if [ "x$PID" != "x" ] && kill -0 $PID 2>/dev/null ; then
STATUS="httpd (pid $PID) running"
RUNNING=1
else