cvs commit: src/usr.bin/kdump mksubr
Craig Rodrigues
rodrigc at FreeBSD.org
Wed Jan 3 20:28:18 PST 2007
rodrigc 2007-01-04 04:28:17 UTC
FreeBSD src repository
Modified files:
usr.bin/kdump mksubr
Log:
Generate sockdomainname() function with auto_if_type() instead
of auto_or_type.
The old parsing code would incorrectly decode a socket() call in the
ping6 program as:
CALL socket(PF_PUP|PF_ECMA|PF_APPLETALK|PF_COIP|PF_SIP,SOCK_DGRAM,0)
The new parsing code decodes the same socket() call as:
CALL socket(PF_INET6,SOCK_DGRAM,0)
Revision Changes Path
1.7 +1 -1 src/usr.bin/kdump/mksubr
More information about the cvs-src
mailing list