]> git.puffer.fish Git - mirror/frr.git/commitdiff
2004-10-22 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Fri, 22 Oct 2004 16:55:10 +0000 (16:55 +0000)
committerpaul <paul>
Fri, 22 Oct 2004 16:55:10 +0000 (16:55 +0000)
* sockopt.h: Fix elif that should be an else.

lib/ChangeLog
lib/sockopt.h

index 40e0f2291506d072fe5ade480070ecced637e888..d9e814099eda55a43062e66597cb440b5fc2e60e 100644 (file)
@@ -6,6 +6,7 @@
        * sockopt.h: Cleanup SOCKOPT_CMSG defines a bit. Add a throwaway
           define for SOPT_SIZE_CMSG_IFINDEX_IPV4 for systems which have
           neither IP_RECVIF nor IP_PKTINFO (eg openbsd).
+          Fix elif that should be an else.
        * command.h: Cleanup the defines a bit, add helper defines and
          collapse all defines to use those. Add an attribute field to
          cmd_element to support, eg hidden or deprecated commands, add
index 63e915ddb48b04cd160774cb8ff5ea8064be6816..bec26163b5325412000d2f1030f2fcb3ffe7df32 100644 (file)
@@ -71,7 +71,7 @@ int setsockopt_ipv6_multicast_loop (int, int);
 #define SOPT_SIZE_CMSG_IFINDEX_IPV4() SOPT_SIZE_CMSG_PKTINFO_IPV4()
 #elif defined (SOPT_SIZE_CMSG_RECVIF_IPV4)
 #define SOPT_SIZE_CMSG_IFINDEX_IPV4() SOPT_SIZE_CMSG_RECVIF_IPV4()
-#elif /* Nothing available */
+#else /* Nothing available */
 #define SOPT_SIZE_CMSG_IFINDEX_IPV4() (sizeof (char *))
 #endif /* SOPT_SIZE_CMSG_IFINDEX_IPV4 */