From 862845aea785a1b7eb52b9e23850d113a2098310 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 9 Jun 2010 18:27:53 -0700 Subject: [PATCH] syslxopt: add missing break; Add missing break; in the command-line parser. Signed-off-by: H. Peter Anvin --- libinstaller/syslxopt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libinstaller/syslxopt.c b/libinstaller/syslxopt.c index 5c172d4..9fda16d 100644 --- a/libinstaller/syslxopt.c +++ b/libinstaller/syslxopt.c @@ -175,6 +175,7 @@ void parse_options(int argc, char *argv[], enum syslinux_mode mode) break; case 'd': opt.directory = optarg; + break; case OPT_RESET_ADV: opt.reset_adv = 1; break; -- 2.7.4