From 2c776bc635865bb35a12910bd220bef14349c848 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 21 Aug 2015 14:52:20 +0100 Subject: [PATCH] Wording change --- src/freedombone-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedombone-config b/src/freedombone-config index 0db27740..49f497bd 100755 --- a/src/freedombone-config +++ b/src/freedombone-config @@ -573,7 +573,7 @@ function interactive_configuration { data=$(tempfile 2>/dev/null) trap "rm -f $data" 0 1 2 5 15 dialog --backtitle "Freedombone Configuration" \ - --inputbox "Wireless Mesh cell ID\n\nIf you press enter the default will be $BATMAN_CELLID" 10 40 "$(grep 'BATMAN_CELLID' temp.cfg | awk -F '=' '{print $2}')" 2> $data + --inputbox "Optionally register with an Access Point" 10 40 "$(grep 'BATMAN_CELLID' temp.cfg | awk -F '=' '{print $2}')" 2> $data sel=$? case $sel in 0) BATMAN_CELLID=$(cat $data);;