]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
clang-format: disable for option table
authorVictor Julien <vjulien@oisf.net>
Tue, 14 Jun 2022 19:11:11 +0000 (21:11 +0200)
committerVictor Julien <vjulien@oisf.net>
Tue, 14 Jun 2022 19:12:17 +0000 (21:12 +0200)
src/suricata.c

index e005c736d0dadbdd19f7c4f9c53797b84ba270b8..33168e1418e66ae0b985f58b646ef9c4407fac05 100644 (file)
@@ -1233,7 +1233,7 @@ static TmEcode ParseCommandLine(int argc, char** argv, SCInstance *suri)
     g_ut_modules = 0;
     g_ut_covered = 0;
 #endif
-
+    // clang-format off
     struct option long_opts[] = {
         {"dump-config", 0, &dump_config, 1},
         {"dump-features", 0, &dump_features, 1},
@@ -1295,6 +1295,7 @@ static TmEcode ParseCommandLine(int argc, char** argv, SCInstance *suri)
 #endif
         {NULL, 0, NULL, 0}
     };
+    // clang-format on
 
     /* getopt_long stores the option index here. */
     int option_index = 0;