From: Vadim Kochan <[email protected]> Use bool as return type in flow_entry_get_extended_is_dns(...) func.
Signed-off-by: Vadim Kochan <[email protected]> --- flowtop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flowtop.c b/flowtop.c index 0927ff5..b094c44 100644 --- a/flowtop.c +++ b/flowtop.c @@ -517,7 +517,7 @@ enum flow_entry_direction { flow_entry_dst, }; -static inline int flow_entry_get_extended_is_dns(struct flow_entry *n) +static inline bool flow_entry_get_extended_is_dns(struct flow_entry *n) { /* We don't want to analyze / display DNS itself, since we * use it to resolve reverse dns. -- 2.4.2 -- You received this message because you are subscribed to the Google Groups "netsniff-ng" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
