svn commit: r216138 - head/usr.sbin/usbdump

Weongyo Jeong weongyo at FreeBSD.org
Fri Dec 3 00:44:07 UTC 2010


Author: weongyo
Date: Fri Dec  3 00:44:07 2010
New Revision: 216138
URL: http://svn.freebsd.org/changeset/base/216138

Log:
  Changes the meaning of each characters '<' and '>' that it could be
  confused with USB OUT or USB IN packets though it just represents USB
  submit or done.  To know the USB packet direction, the endpoint address
  should be referred.
  
  Requested by:	jkim

Modified:
  head/usr.sbin/usbdump/usbdump.c

Modified: head/usr.sbin/usbdump/usbdump.c
==============================================================================
--- head/usr.sbin/usbdump/usbdump.c	Fri Dec  3 00:05:49 2010	(r216137)
+++ head/usr.sbin/usbdump/usbdump.c	Fri Dec  3 00:44:07 2010	(r216138)
@@ -247,7 +247,7 @@ print_apacket(const struct bpf_xhdr *hdr
 	printf(" usbus%d.%d 0x%02x %s %s", up->up_busunit, up->up_address,
 	    up->up_endpoint,
 	    xfertype_table[up->up_xfertype],
-	    up->up_type == USBPF_XFERTAP_SUBMIT ? ">" : "<");
+	    up->up_type == USBPF_XFERTAP_SUBMIT ? "S" : "D");
 	printf(" (%d/%d)", up->up_frames, up->up_length);
 	if (up->up_type == USBPF_XFERTAP_DONE)
 		printf(" %s", errstr_table[up->up_error]);


More information about the svn-src-head mailing list