diff options
author | paul <paul> | 2004-10-22 16:55:10 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-22 16:55:10 +0000 |
commit | 4927cf0bf0828f2c4a9bda30f3c890d1835c7370 (patch) | |
tree | 09ec812c627aeeb00a5aba1c58b0fe675d7a4fb8 /lib/sockopt.h | |
parent | 406d67165262a3f9443f395c7c85d8c3519309ef (diff) |
2004-10-22 Paul Jakma <paul@dishone.st>
* sockopt.h: Fix elif that should be an else.
Diffstat (limited to 'lib/sockopt.h')
-rw-r--r-- | lib/sockopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sockopt.h b/lib/sockopt.h index 63e915dd..bec26163 100644 --- a/lib/sockopt.h +++ b/lib/sockopt.h @@ -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 */ |