Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Jan 2007 04:28:17 +0000 (UTC)
From:      Craig Rodrigues <rodrigc@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.bin/kdump mksubr
Message-ID:  <200701040428.l044SHFd063776@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701040428.l044SHFd063776>