From: Sake Blok Date: Tue, 16 Nov 2010 20:22:20 +0000 (-0000) Subject: Make editcap -B work like expected: output no packets after the stop time. X-Git-Url: http://git.samba.org/?p=metze%2Fwireshark%2Fwip.git;a=commitdiff_plain;h=9cf1d897325887aa2bda7f0e1621c077f29d717d Make editcap -B work like expected: output no packets after the stop time. Old behavior was to include a packet with a timestamp of 12:00:00.934 if -B "YYYY-MM-DD 12:00:00" was used. svn path=/trunk/; revision=34913 --- diff --git a/doc/editcap.pod b/doc/editcap.pod index 7dd5886592..7101ea7d00 100644 --- a/doc/editcap.pod +++ b/doc/editcap.pod @@ -155,7 +155,7 @@ The time is given in the following format YYYY-MM-DD HH:MM:SS =item -B Estop timeE -Saves only the packets whose timestamp is on or before stop time. +Saves only the packets whose timestamp is before stop time. The time is given in the following format YYYY-MM-DD HH:MM:SS =item -h diff --git a/editcap.c b/editcap.c index 7c027490a9..de8af75211 100644 --- a/editcap.c +++ b/editcap.c @@ -294,7 +294,7 @@ check_timestamp(wtap *wth) { struct wtap_pkthdr* pkthdr = wtap_phdr(wth); - return ( pkthdr->ts.secs >= starttime ) && ( pkthdr->ts.secs <= stoptime ); + return ( pkthdr->ts.secs >= starttime ) && ( pkthdr->ts.secs < stoptime ); } static void @@ -674,9 +674,9 @@ usage(gboolean is_error) fprintf(output, "\n"); fprintf(output, "Packet selection:\n"); fprintf(output, " -r keep the selected packets; default is to delete them.\n"); - fprintf(output, " -A don't output packets whose timestamp is before the\n"); - fprintf(output, " given time (format as YYYY-MM-DD hh:mm:ss).\n"); - fprintf(output, " -B don't output packets whose timestamp is after the\n"); + fprintf(output, " -A only output packets whose timestamp is after (or equal\n"); + fprintf(output, " to) the given time (format as YYYY-MM-DD hh:mm:ss).\n"); + fprintf(output, " -B only output packets whose timestamp is before the\n"); fprintf(output, " given time (format as YYYY-MM-DD hh:mm:ss).\n"); fprintf(output, "\n"); fprintf(output, "Duplicate packet removal:\n");