Skip to content

Commit

Permalink
Fixed logic for selection of loopback interfaces while printing inter…
Browse files Browse the repository at this point in the history
…face list - closes appneta#67
  • Loading branch information
fklassen committed Feb 26, 2014
1 parent e044ab8 commit efc5800
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
$Id$

xx/xx/xxxx Version 4.0.4
- Missing interfaces with --listnics option (#67)
- Compile issue with netmap v10 and debugging (#66)
- Bad values with --stats and -t options (#65)

02/04/2014 Version 4.0.3
- Fix build errors when ENABLE_VERBOSE is not set (#60)
- Build error on host without tcpdump (#59)
Expand Down
2 changes: 1 addition & 1 deletion src/common/interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ list_interfaces(interface_list_t *list)
ptr = list;

do {
if (! ptr->flags & PCAP_IF_LOOPBACK) {
if (!(ptr->flags & PCAP_IF_LOOPBACK)) {
#ifdef HAVE_WIN32
printf("%s\t%s\n\t%s\n", ptr->alias, ptr->name, ptr->description);
#else
Expand Down

0 comments on commit efc5800

Please sign in to comment.