Your message dated Sun, 01 Mar 2009 15:05:23 +0000
with message-id <[email protected]>
and subject line Bug#517661: fixed in tcpdump 4.0.0-2
has caused the Debian Bug report #517661,
regarding tcpdump: tcp seqno missing from datasegs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
517661: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517661
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: tcpdump
Version: 4.0.0-1


I recently upgraded my scratch system and got the new tcpdump
(in sid). I was very surprised to find out almost immediately that
printing tcp seqno nowadays required _two_ -v's?!? It's a upstream
bug but submitting to them is made so hopelessly complex that I
won't bother taking those steps... Anyway, here's the fix:

[PATCH] fix printing of tcp seqno for data segments

The new formatting carelessly removed this check and put
it inside the block only, meaning that seqno won't be
printed at all unless at least -v -v are given.

Signed-off-by: Ilpo Järvinen <[email protected]>
---
 print-tcp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/print-tcp.c b/print-tcp.c
index 17c1775..c8c2b90 100644
--- a/print-tcp.c
+++ b/print-tcp.c
@@ -452,7 +452,7 @@ tcp_print(register const u_char *bp, register u_int length,
 #endif

         length -= hlen;
-        if (vflag > 1 || flags & (TH_SYN | TH_FIN | TH_RST)) {
+        if (vflag > 1 || length > 0 || flags & (TH_SYN | TH_FIN | TH_RST)) {
                 (void)printf(", seq %u", seq);

                 if (length > 0) {
--
1.5.6.5

--- End Message ---
--- Begin Message ---
Source: tcpdump
Source-Version: 4.0.0-2

We believe that the bug you reported is fixed in the latest version of
tcpdump, which is due to be installed in the Debian FTP archive:

tcpdump_4.0.0-2.diff.gz
  to pool/main/t/tcpdump/tcpdump_4.0.0-2.diff.gz
tcpdump_4.0.0-2.dsc
  to pool/main/t/tcpdump/tcpdump_4.0.0-2.dsc
tcpdump_4.0.0-2_amd64.deb
  to pool/main/t/tcpdump/tcpdump_4.0.0-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Romain Francoise <[email protected]> (supplier of updated tcpdump package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 01 Mar 2009 14:51:25 +0100
Source: tcpdump
Binary: tcpdump
Architecture: source amd64
Version: 4.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Romain Francoise <[email protected]>
Changed-By: Romain Francoise <[email protected]>
Description: 
 tcpdump    - A powerful tool for network monitoring and data acquisition
Closes: 517661
Changes: 
 tcpdump (4.0.0-2) unstable; urgency=low
 .
   * debian/patches/30_tcp_seq.diff: Patch from Ilpo Järvinen adding back
     default display of sequence numbers in TCP printer (closes: #517661).
   * debian/patches/series: Update.
Checksums-Sha1: 
 08ab1aed63dc5ac7ea1d0e8a6c8c19d787e35702 1178 tcpdump_4.0.0-2.dsc
 f7e62ee1c09c944efd52880aebbb515087170d91 11522 tcpdump_4.0.0-2.diff.gz
 cbfe9d1c9a41ce587f4e79ad60147c4d7760dbdf 343684 tcpdump_4.0.0-2_amd64.deb
Checksums-Sha256: 
 4fd0e037531abfd7652c3270d63682a5cc21c9dd808aedbd14995ff019286989 1178 
tcpdump_4.0.0-2.dsc
 07131055891c01f9da69d15fd08deb1d7a38470d95943ba1659c955933457ae6 11522 
tcpdump_4.0.0-2.diff.gz
 f010d14b3e47dd6a48e4a5b1e9bc4adbe1e91e53569e50bdc7b6fed90a0db6c9 343684 
tcpdump_4.0.0-2_amd64.deb
Files: 
 6329bc1a43db7f7e158ffca972851935 1178 net optional tcpdump_4.0.0-2.dsc
 fb862284072b91786dbf323905283381 11522 net optional tcpdump_4.0.0-2.diff.gz
 bd0734b72d2b63da3c40a277e7054ada 343684 net optional tcpdump_4.0.0-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iD8DBQFJqppqogN2vsA8Vt8RAiyyAKDUgW5fF808B233AWnvFiP24nwzqwCeJsq/
xaJHr8e9vu5g/06UWPY84wY=
=ej6I
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to