diff options
| author | Vladimir Kondratyev <wulf@FreeBSD.org> | 2025-09-23 08:33:03 +0000 |
|---|---|---|
| committer | Vladimir Kondratyev <wulf@FreeBSD.org> | 2025-09-23 08:36:33 +0000 |
| commit | f586fc0cf8ff54393a3db565437788a12bdc6e99 (patch) | |
| tree | 40d60654356a1ece5c8c6d8a6aa1e7ddc817e4c6 | |
| parent | d9cc3d558d00ee7f62dbef2032f099033c91d2a1 (diff) | |
rc.d/moused: Fix misplaced `basename`
This fixes "usage: basename string [suffix]" message.
Reported by: cy
MFC after: 1 day
| -rwxr-xr-x | libexec/rc/rc.d/moused | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rc/rc.d/moused b/libexec/rc/rc.d/moused index 35a26bd57275..e267ae5b3cd8 100755 --- a/libexec/rc/rc.d/moused +++ b/libexec/rc/rc.d/moused @@ -46,8 +46,8 @@ moused_start() # the moused_port variable, which if not defined sets it to the # passed in device name. # - ms=`basename $1` - if [ -n "$ms" ]; then + if [ -n "$1" ]; then + ms=`basename $1` eval myflags=\${moused_${ms}_flags-$moused_flags} eval myport=\${moused_${ms}_port-/dev/$1} eval mytype=\${moused_${ms}_type-$moused_type} |
