From 9b49d637621170e50b46c20194088b288dc24e8c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 24 Nov 1999 20:05:55 +0000 Subject: fix other syntax error --- rc.d/rc.sysinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 530f6a06..1f9489c1 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -287,7 +287,7 @@ if [ -n "$USEMODULES" ]; then fi # Load mixer settings -if [ grep -q "14 sound" /proc/devices 2>/dev/null -a -f /etc/.aumixrc -a -x /bin/aumix-minimal ]; then +if grep -q "14 sound" /proc/devices 2>/dev/null && [ -f /etc/.aumixrc -a -x /bin/aumix-minimal ]; then action "Loading mixer settings" /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null fi -- cgit v1.2.1