From 0298e4ffa079db7d3685281cd3aff44f2362eadd Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 5 Jan 2009 09:37:38 +0000 Subject: Remove leading and trailing space on the ctrl_interface line. --- net/wpa_supplicant.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/wpa_supplicant.sh b/net/wpa_supplicant.sh index ae7ea78..092dfb3 100644 --- a/net/wpa_supplicant.sh +++ b/net/wpa_supplicant.sh @@ -105,12 +105,14 @@ wpa_supplicant_pre_start() fi # Work out where the ctrl_interface dir is if it's not specified - local ctrl_dir=$(sed -e '/^ctrl_interface=/!d' \ + local ctrl_dir=$(sed -e 's/^ *//' \ + -e '/^ctrl_interface=/!d' \ -e 's/^ctrl_interface=//' \ -e 's/^ *//' \ -e 's/^DIR=//' \ -e 's/^ *//' \ -e 's/GROUP=.*//' \ + -e 's/ *$//' \ "${cfgfile}") if [ -z "${ctrl_dir}" ]; then ctrl_dir=${opts##* -C} -- cgit v1.2.3