summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-12-23 07:15:59 +0000
committerJeremy Allison <jra@samba.org>1997-12-23 07:15:59 +0000
commitd1e796d8577a666e5ef14f9bb462c080300dca3e (patch)
tree49a485ff08054c613b585c741d11f7dfbc197c0c /source3/lib/util.c
parent74c807fcc5a02a5a5b0ea06ddf2bc65e85938716 (diff)
downloadsamba-d1e796d8577a666e5ef14f9bb462c080300dca3e.tar.gz
samba-d1e796d8577a666e5ef14f9bb462c080300dca3e.tar.bz2
samba-d1e796d8577a666e5ef14f9bb462c080300dca3e.zip
Fixes to compile under OpenBSD from "Todd T. Fries" <toddf@acm.org>
Jeremy. (This used to be commit 3c9292505914e2119fa7b1973c9fbbe1742262b2)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index a6b5d980f9..125db2ed1e 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -3305,7 +3305,7 @@ int open_socket_in(int type, int port, int dlevel,uint32 socket_addr)
bzero((char *)&sock,sizeof(sock));
memcpy((char *)&sock.sin_addr,(char *)hp->h_addr, hp->h_length);
-#if defined(__FreeBSD__) || defined(NETBSD) /* XXX not the right ifdef */
+#if defined(__FreeBSD__) || defined(NETBSD) || defined(__OpenBSD__) /* XXX not the right ifdef */
sock.sin_len = sizeof(sock);
#endif
sock.sin_port = htons( port );