From 29ce823f72ffdfb2051765a6417126ee91e22552 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 18 May 2009 13:12:30 +0200 Subject: [PATCH] Fix '==' --- scripts/raddebug | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/raddebug b/scripts/raddebug index b067366a38..fb90013321 100755 --- a/scripts/raddebug +++ b/scripts/raddebug @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA # -# Copyright (C) 2009 Alan DeKok +# Copyright (C) 2009 Network RADIUS SARL # ###################################################################### # @@ -41,14 +41,14 @@ do case $OPTION in c) condition="$OPTARG" ;; - d) [ "$extra" == "" ] || usage + d) [ "$extra" = "" ] || usage extra="-d $OPTARG" ;; i) condition="(Packet-Src-IP-Address == $OPTARG)" ;; I) condition="(Packet-Src-IPv6-Address == $OPTARG)" ;; - f) [ "$extra" == "" ] || usage + f) [ "$extra" = "" ] || usage extra="-f $OPTARG" ;; t) timeout="$OPTARG" -- 2.47.3