aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chinese/big5fs/files/big5fs.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/chinese/big5fs/files/big5fs.sh b/chinese/big5fs/files/big5fs.sh
index 07caf23afaaa..f1125d0fd3cb 100644
--- a/chinese/big5fs/files/big5fs.sh
+++ b/chinese/big5fs/files/big5fs.sh
@@ -3,17 +3,17 @@
case "$1" in
start)
if [ -x @@PREFIX@@/modules/big5cd9660.ko ]; then
- echo -n 'Big5 cd9660'
+ echo -n ' Big5-cd9660'
kldload /usr/local/modules/big5cd9660.ko
fi
if [ -x @@PREFIX@@/modules/big5msdos.ko ]; then
- echo -n 'Big5 msdos'
+ echo -n ' Big5-msdos'
kldload /usr/local/modules/big5msdos.ko
fi
;;
stop)
- kldunload -v -n big5cd9660 && echo -n 'Big5 cd9660'
- kldunload -v -n big5msdos && echo -n 'Big5 msdos'
+ kldunload -v -n big5cd9660 && echo -n ' Big5-cd9660'
+ kldunload -v -n big5msdos && echo -n ' Big5-msdos'
;;
*)
echo "Usage: big5fs.sh {start|stop}" >&2