summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-02-02 06:39:23 +0000
committerMark Spencer <markster@digium.com>2004-02-02 06:39:23 +0000
commitd3ab1d50b524927d7021939378689025f62cfbeb (patch)
tree483d039b403852bebfe33af2085677e07208e685
parent9c2f131b66944350d8745887a2162ce0438a2f13 (diff)
More BSD enhancements (#970)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2110 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xacl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/acl.c b/acl.c
index 38ac1666c..9e1edb414 100755
--- a/acl.c
+++ b/acl.c
@@ -29,7 +29,7 @@
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <sys/ioctl.h>
-#ifdef __OpenBSD__
+#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__)
#include <fcntl.h>
#include <net/route.h>
@@ -179,7 +179,7 @@ int ast_lookup_iface(char *iface, struct in_addr *address) {
int ast_ouraddrfor(struct in_addr *them, struct in_addr *us)
{
-#ifdef __OpenBSD__
+#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__)
struct sockaddr_in *sin;
struct sockaddr *sa;
struct {