summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/include/cygwin/if.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index ac6e6f0c2..8cb02dff2 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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.
diff --git a/winsup/cygwin/include/cygwin/if.h b/winsup/cygwin/include/cygwin/if.h
index 30474fe5a..8f76e836e 100644
--- a/winsup/cygwin/include/cygwin/if.h
+++ b/winsup/cygwin/include/cygwin/if.h
@@ -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 */