Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [netbsd-5] src/sbin/ifconfig



Module Name:    src
Committed By:   snj
Date:           Sat Apr  4 18:22:54 UTC 2009

Modified Files:
        src/sbin/ifconfig [netbsd-5]: ifconfig.c

Log Message:
Pull up following revision(s) (requested by plunky in ticket #665):
        sbin/ifconfig/ifconfig.c: revision 1.215
Because the IFF_NOARP flag is a negative option it needs to be negated
when being applied from the "arp" option which itself is positive.
problem demonstrated by
# ifconfig tap3 create
# ifconfig tap3
tap3: flags=8802<BROADCAST,SIMPLEX,MULTICAST> mtu 1500
        address: f2:0b:a4:7f:44:03
        media: Ethernet autoselect
# ifconfig tap3 arp
# ifconfig tap3
tap3: flags=8882<BROADCAST,NOARP,SIMPLEX,MULTICAST> mtu 1500
        address: f2:0b:a4:7f:44:03
        media: Ethernet autoselect
# ifconfig tap3 -arp
# ifconfig tap3
tap3: flags=8802<BROADCAST,SIMPLEX,MULTICAST> mtu 1500
        address: f2:0b:a4:7f:44:03
        media: Ethernet autoselect
# ifconfig tap3 destroy
#


To generate a diff of this commit:
cvs rdiff -u -r1.213 -r1.213.2.1 src/sbin/ifconfig/ifconfig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Home | Main Index | Thread Index | Old Index