From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Date: Mon, 09 Jun 2003 11:42:21 +0000 Subject: [PATCH] syntax error in load_drivers, LOADED unset Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org This avoids the ' if [ = false ] ' syntax error: I have seen it also in the debian patch. Index: etc/hotplug/hotplug.functions =================================RCS file: /cvsroot/linux-hotplug/admin/etc/hotplug/hotplug.functions,v retrieving revision 1.19 diff -u -r1.19 hotplug.functions --- etc/hotplug/hotplug.functions 6 Jun 2003 18:26:57 -0000 1.19 +++ etc/hotplug/hotplug.functions 9 Jun 2003 11:39:07 -0000 @@ -171,7 +171,7 @@ LOADED=true fi - if [ $LOADED = false ]; then + if [ "$LOADED" = false ]; then mesg "missing kernel or user mode driver $MODULE " fi done -- USB is for mice, FireWire is for men! ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've never dreamed of, try TotalView 6 free at www.etnus.com. _______________________________________________ Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net Linux-hotplug-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel