mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
efibootmgr: add missing break for 'u' case
Reviewed by: imp, zlei
Reported by: Coverity
CID: 1505695
Fixes: 9a79152994 ("efibootmgr: Add --efidev (-u) to dis...")
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D38747
This commit is contained in:
parent
7f0ebf0876
commit
17a5a29003
1 changed files with 1 additions and 0 deletions
|
|
@ -290,6 +290,7 @@ parse_args(int argc, char *argv[])
|
|||
case 'u':
|
||||
opts.find_dev = true;
|
||||
opts.dev = strdup(optarg);
|
||||
break;
|
||||
case 'v':
|
||||
opts.verbose = true;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue