Author has silently updated the software without changing the version
Responsible Changed From-To: freebsd-ports-bugs->ehaupt Take.
Can you summarize what was changed? Thanks in advance, Emanuel -- GnuPG key id: 0x55E67774 Download: http://pgp.mit.edu:11371 Key fingerprint: 17B3 FD8F BA68 4AB4 10FD A9D1 AD52 6588 55E6 7774
State Changed From-To: open->feedback Awaiting maintainer feedback.
Hello Emanuel, Saturday, December 31, 2005, 8:12:54 PM, you wrote: > Can you summarize what was changed? > Thanks in advance, > Emanuel It was actually a simple constraints check: diff -ruN pathneck-1.2.old/pathneck.c pathneck-1.2/pathneck.c --- pathneck-1.2.old/pathneck.c Sun Nov 7 00:00:03 2004 +++ pathneck-1.2/pathneck.c Sun Dec 25 20:34:39 2005 @@ -539,7 +539,7 @@ continue; /* if "-c" is specified, rtt_i could exceed MAX_RTT_NUM */ - if (rtt_i < MAX_RTT_NUM) { + if (rtt_i < MAX_RTT_NUM && len == 60) { memcpy(rtt_rec[rtt_i], buffer, len); rtt_arr_time[rtt_i] = get_time(); pre_time = rtt_arr_time[rtt_i]; -- Best regards, Babak mailto:babak@farrokhi.net
State Changed From-To: feedback->closed Committed, thanks for clarifying.