]> code.ossystems Code Review - openembedded-core.git/commitdiff
ofono: fix test block syntax error
authorDarren Hart <dvhart@linux.intel.com>
Fri, 15 Jul 2011 21:44:24 +0000 (14:44 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 19 Jul 2011 16:33:57 +0000 (17:33 +0100)
A space is required prior to the closing square bracket. Without it,
a parsing error is reported to the console. I don't have hardware to
confirm, but I suspect the service would fail to function properly
as well.

Correct the typo.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
meta/recipes-connectivity/ofono/ofono/ofono

index 6d46fb8966c5552930c37c50661b68c05eae9a0c..cc9970929c20fc4ab1cf1e9745a2617dc715c6c7 100644 (file)
@@ -4,7 +4,7 @@ DAEMON=/usr/sbin/ofonod
 PIDFILE=/var/run/ofonod.pid
 DESC="Telephony daemon"
 
-if [ -f /etc/default/ofono] ; then
+if [ -f /etc/default/ofono ] ; then
        . /etc/default/ofono
 fi