pkgsrc/net/xorp/patches/patch-rip_output__updates.cc
joerg 0426d1b980 Fix a number of issues found by clang:
- missing this references to ensure template functions are found
- using == as assignment
- unused functions in lex sources
- adding integers to strings instead of formatting them
- class vs struct mismatches
2012-07-03 17:36:10 +00:00

13 lines
410 B
C++

$NetBSD: patch-rip_output__updates.cc,v 1.1 2012/07/03 17:36:10 joerg Exp $
--- rip/output_updates.cc.orig 2012-07-03 16:24:18.000000000 +0000
+++ rip/output_updates.cc
@@ -78,7 +78,7 @@ OutputUpdates<A>::output_packet()
origin, r->tag(),
r->policytags());
- bool accepted = do_filtering(copy);
+ bool accepted = this->do_filtering(copy);
if (!accepted) {
delete copy;
continue;