svn commit: r251210 - head/contrib/tcpdump

Xin LI delphij at FreeBSD.org
Fri May 31 22:55:24 UTC 2013


Author: delphij
Date: Fri May 31 22:55:23 2013
New Revision: 251210
URL: http://svnweb.freebsd.org/changeset/base/251210

Log:
  MFV: Redo the fixup using the submitted version accepted by upstream.

Modified:
  head/contrib/tcpdump/print-rip.c
Directory Properties:
  head/contrib/tcpdump/   (props changed)

Modified: head/contrib/tcpdump/print-rip.c
==============================================================================
--- head/contrib/tcpdump/print-rip.c	Fri May 31 22:55:21 2013	(r251209)
+++ head/contrib/tcpdump/print-rip.c	Fri May 31 22:55:23 2013	(r251210)
@@ -17,8 +17,6 @@
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- *
- * $FreeBSD$
  */
 
 #ifndef lint
@@ -143,7 +141,7 @@ rip_entry_print_v2(register const struct
 				putchar (isprint(*p) ? *p : '.');
 		} else if (auth_type == 3) {
 			printf("\n\t  Auth header:");
-			printf(" Packet Len %u,", EXTRACT_16BITS((u_int16_t *)ni + 2));
+			printf(" Packet Len %u,", EXTRACT_16BITS((u_int8_t *)ni + 4));
 			printf(" Key-ID %u,", *((u_int8_t *)ni + 6));
 			printf(" Auth Data Len %u,", *((u_int8_t *)ni + 7));
 			printf(" SeqNo %u,", EXTRACT_32BITS(&ni->rip_dest_mask));


More information about the svn-src-all mailing list