diff --git a/ChangeLog b/ChangeLog index 12c2ad5..9aa2fd0 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2018-06-24 - Fix bookkeeper type - use key_t - Add multiple packet repeaters to nfcapd/sfcapd. Up to 8 repeaters (-R) can be defined. +- Ignore OSX .DS_Store files in -R file list 2018-05-06 - New bookkeeper hash broke NfSen. Fixed. ported back to release 1.6.17 diff --git a/bin/flist.c b/bin/flist.c index 7f7152e..3f4c8b3 100644 --- a/bin/flist.c +++ b/bin/flist.c @@ -798,6 +798,9 @@ printf("DGB: short fts: '%s', filer_first: '%s', filter_last: '%s'\n", continue; if ( strstr(ftsent->fts_name, ".stat") != NULL ) continue; + // skip OSX DS_Store files + if ( strstr(ftsent->fts_name, ".DS_Store") != NULL ) + continue; // skip pcap file if ( strstr(ftsent->fts_name, "pcap") != NULL ) continue;