From: Sarantis Paskalis <paskalis@di.uoa.gr>
Date: Thu, 28 Jun 2001 13:50:36 +0000 (+0000)
Subject: swap ?$ with $?; remove bogus ";;"
X-Git-Tag: v_2_9_9~328
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/developer-manual/static/@default-cgi@show-status?a=commitdiff_plain;h=f7a0005dc243374b42190d0225c97f102865e1b6;p=privoxy.git

swap ?$ with $?; remove bogus ";;"
---

diff --git a/junkbuster.init b/junkbuster.init
index 04bdfded..f35001a8 100644
--- a/junkbuster.init
+++ b/junkbuster.init
@@ -36,6 +36,9 @@
 # 
 #  Revisions   :
 #     $Log: junkbuster.init,v $
+#     Revision 1.7  2001/06/28 13:40:26  sarantis
+#     remove single quotes from $JB; it was not expanded.
+#
 #     Revision 1.6  2001/06/28 13:38:42  sarantis
 #     formatting changes; individual return values are returned from the init script.
 #
@@ -93,7 +96,7 @@ stop () {
 	# stop daemon
 	echo -n $"Stopping junkbuster: "
 	killproc junkbuster && rm -f /var/lock/subsys/junkbuster
-	RETVAL=?$
+	RETVAL=$?
 	echo
 	return $RETVAL
 }
@@ -116,7 +119,6 @@ case "$1" in
 		stop
 		start
 		RETVAL=$?
-		;;
 	fi 
 	;;
   status)