Index: src/PktSrc.cc
===================================================================
--- src/PktSrc.cc	(revision 6943)
+++ src/PktSrc.cc	(revision 6944)
@@ -329,17 +330,9 @@
 		s->received = s->dropped = s->link = 0;
 		}
 
-#ifdef HAVE_LINUX
-	// Linux clears its counters each time.
 	s->received = stats.received;
-	s->dropped = stats.dropped + pstat.ps_drop;
-	s->link = 0; // not available
-#else
-	// Default assumes FreeBSD's semantics.
-	s->received = stats.received;
 	s->dropped = pstat.ps_drop;
 	s->link = pstat.ps_recv;
-#endif
 
 	if ( pseudo_realtime )
 		s->dropped = 0;
Index: CHANGES.features
===================================================================
--- CHANGES.features	(revision 6943)
+++ CHANGES.features	(revision 6944)
@@ -35,6 +35,12 @@
 
   $Revisions: r6943
 
+- Fix for #18.
+
+  Status: Under test
+
+  $Revisions: r6944
+
 ################ For local use only (not need to merge into trunk).
 
 - Including SVN revision number into version message.

