The branch main has been updated by emaste:

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

commit 5f047ae0c73b4424b29e64d50b71346b9abd058e
Author:     Ed Maste <[email protected]>
AuthorDate: 2024-02-01 21:22:11 +0000
Commit:     Ed Maste <[email protected]>
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;

Reply via email to