Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Feb 2024 22:03:19 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 5f047ae0c73b - main - pflowctl: add missing break to case 's'
Message-ID:  <202402012203.411M3J1p039184@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=5f047ae0c73b4424b29e64d50b71346b9abd058e

commit 5f047ae0c73b4424b29e64d50b71346b9abd058e
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-02-01 21:22:11 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-02-01 22:03:12 +0000

    pflowctl: add missing break to case 's'
    
    CID:            1534009
    Reported by:    Coverity Scan
    Reviewed by:    kp
    Differential Revision: https://reviews.freebsd.org/D43704
---
 sbin/pflowctl/pflowctl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sbin/pflowctl/pflowctl.c b/sbin/pflowctl/pflowctl.c
index f6ca8980db1b..b6561f7787c0 100644
--- a/sbin/pflowctl/pflowctl.c
+++ b/sbin/pflowctl/pflowctl.c
@@ -577,6 +577,7 @@ main(int argc, char *argv[])
 			op = OP_SET;
 			set_arg_count = argc - optind;
 			set_args = argv + optind;
+			break;
 		case 'v':
 			verbose = true;
 			break;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402012203.411M3J1p039184>