svn commit: r252082 - head/usr.sbin/bsdconfig/mouse
Devin Teske
dteske at FreeBSD.org
Sat Jun 22 02:51:23 UTC 2013
Author: dteske
Date: Sat Jun 22 02:51:22 2013
New Revision: 252082
URL: http://svnweb.freebsd.org/changeset/base/252082
Log:
Fix a regression introduced by r251967, resulting in:
/usr/libexec/bsdconfig/110.mouse/mouse: 134:
Syntax error: ";;" unexpected (expecting "fi")
Modified:
head/usr.sbin/bsdconfig/mouse/mouse
Modified: head/usr.sbin/bsdconfig/mouse/mouse
==============================================================================
--- head/usr.sbin/bsdconfig/mouse/mouse Sat Jun 22 02:47:54 2013 (r252081)
+++ head/usr.sbin/bsdconfig/mouse/mouse Sat Jun 22 02:51:22 2013 (r252082)
@@ -131,7 +131,7 @@ while :; do
esac
if [ "$command" ]; then
- $BSDCFG_LIBE/$APP_DIR/$command ${USE_XDIALOG:+-X} ;;
+ $BSDCFG_LIBE/$APP_DIR/$command ${USE_XDIALOG:+-X}
else
f_die 1 "$msg_unknown_mouse_menu_selection"
fi
More information about the svn-src-all
mailing list