From ef6c39ebd6b53b009b043cc06728015291884b6d Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Tue, 5 Dec 2023 10:37:32 +0100 Subject: [PATCH] cansequence: add missing "--strict" to long_options Fixes: 642190647e8e ("cansequence: add option to ignore classical CAN frames") --- cansequence.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cansequence.c b/cansequence.c index f739b7a..5134083 100644 --- a/cansequence.c +++ b/cansequence.c @@ -288,6 +288,7 @@ int main(int argc, char **argv) struct option long_options[] = { { "extended", no_argument, 0, 'e' }, { "canfd", no_argument, 0, 'f' }, + { "strict", no_argument, 0, 's' }, { "brs", no_argument, 0, 'b' }, { "identifier", required_argument, 0, 'i' }, { "loop", required_argument, 0, 'l' },