svn commit: r206891 - head/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Tue Apr 20 08:50:20 UTC 2010
Author: tuexen
Date: Tue Apr 20 08:50:19 2010
New Revision: 206891
URL: http://svn.freebsd.org/changeset/base/206891
Log:
Really print the nr_mapping array when it should be printed.`
MFC after: 3 days.
Modified:
head/sys/netinet/sctputil.c
Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c Tue Apr 20 08:19:43 2010 (r206890)
+++ head/sys/netinet/sctputil.c Tue Apr 20 08:50:19 2010 (r206891)
@@ -1215,7 +1215,7 @@ sctp_print_mapping_array(struct sctp_ass
}
printf("Non renegable mapping array (last %d entries are zero):\n", asoc->mapping_array_size - limit);
for (i = 0; i < limit; i++) {
- printf("%2.2x%c", asoc->mapping_array[i], ((i + 1) % 16) ? ' ' : '\n');
+ printf("%2.2x%c", asoc->nr_mapping_array[i], ((i + 1) % 16) ? ' ' : '\n');
}
if (limit % 16)
printf("\n");
More information about the svn-src-head
mailing list