cvs commit: src/usr.bin/kdump mksubr
Craig Rodrigues
rodrigc at FreeBSD.org
Thu Dec 21 21:07:22 PST 2006
rodrigc 2006-12-22 05:07:21 UTC
FreeBSD src repository
Modified files:
usr.bin/kdump mksubr
Log:
The second argument (type) to socket(2) is an enum, not a bitmask, so parse
it as an enum.
If an SCTP SOCK_SEQPACKET socket was opened, kdump would display this
wrong output:
socket(PF_INET,SOCK_STREAM|SOCK_RDM|SOCK_SEQPACKET,0x84)
instead of this correct output:
socket(PF_INET,SOCK_SEQPACKET,0x84)
MFC after: 2 weeks
Revision Changes Path
1.5 +1 -1 src/usr.bin/kdump/mksubr
More information about the cvs-src
mailing list