From 4ef0123eb70fb892d6b6b511c67e94abb3301c96 Mon Sep 17 00:00:00 2001 From: Devin Teske Date: Sat, 22 Jun 2013 02:51:22 +0000 Subject: [PATCH] Fix a regression introduced by r251967, resulting in: /usr/libexec/bsdconfig/110.mouse/mouse: 134: Syntax error: ";;" unexpected (expecting "fi") --- usr.sbin/bsdconfig/mouse/mouse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bsdconfig/mouse/mouse b/usr.sbin/bsdconfig/mouse/mouse index 9c061a395ba7..33d1a6c0685e 100755 --- a/usr.sbin/bsdconfig/mouse/mouse +++ b/usr.sbin/bsdconfig/mouse/mouse @@ -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