From cb3fa6e42792ce28cade49012347346375dd2385 Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Thu, 5 Aug 2021 06:30:46 +0200 Subject: [PATCH] [tools/bgpgrep/bgpgrep_compile.c] Fix leftover typo in assert() --- tools/bgpgrep/bgpgrep_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bgpgrep/bgpgrep_compile.c b/tools/bgpgrep/bgpgrep_compile.c index 01d6170..93ce51e 100755 --- a/tools/bgpgrep/bgpgrep_compile.c +++ b/tools/bgpgrep/bgpgrep_compile.c @@ -722,7 +722,7 @@ void Bgpgrep_CompileVmProgram(int argc, char **argv) assert(C.loopsFn >= 0); assert(C.peerMatchFn >= 0); assert(C.timestampCmpFn >= 0); - assert(C.bogonFn >= 0); + assert(C.bogonAsnFn >= 0); // Actual compilation if (C.argc > 0) {