* include/cygwin/if.h (IFF_POINTOPOINT): Fix typo.

This commit is contained in:
Corinna Vinschen 2007-06-20 09:28:47 +00:00
parent 94b5321ed9
commit 9cc40d5d16
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-06-20 Corinna Vinschen <corinna@vinschen.de>
* include/cygwin/if.h (IFF_POINTOPOINT): Fix typo.
2007-06-16 Christopher Faylor <me+cygwin@cgf.cx>
* include/search.h: Reinstate node_t definition.

View File

@ -22,7 +22,7 @@ extern "C" {
#define IFF_UP 0x1 /* interface is up */
#define IFF_BROADCAST 0x2 /* broadcast address valid */
#define IFF_LOOPBACK 0x8 /* is a loopback net */
#define IFF_POINTTOPOINT 0x10 /* is a point-to-point interface */
#define IFF_POINTOPOINT 0x10 /* is a point-to-point interface */
#define IFF_NOTRAILERS 0x20 /* avoid use of trailers */
#define IFF_RUNNING 0x40 /* resources allocated */
#define IFF_NOARP 0x80 /* no ARP protocol */