summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-10-05 21:35:17 +0000
committerLuke Leighton <lkcl@samba.org>1999-10-05 21:35:17 +0000
commiteb9268550f2330d4a9a3381f560bd7d70743e19a (patch)
tree9c117e67b9f710d18525642d1864fd8a8720942a /source3/smbd
parent65ce93d549d74c33f108e76da5cdd183fcf736de (diff)
downloadsamba-eb9268550f2330d4a9a3381f560bd7d70743e19a.tar.gz
samba-eb9268550f2330d4a9a3381f560bd7d70743e19a.tar.bz2
samba-eb9268550f2330d4a9a3381f560bd7d70743e19a.zip
David van Geyn spotted that ulong is not defined on FREEBSD, not supposed
to use ulong use uint32 instead. (This used to be commit 16dd94db1fd2ed8ed7d240c5aac5a481b64cd26d)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 9d006fd176..c59e189a9d 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -96,7 +96,7 @@ static BOOL open_sockets_inetd(void)
/****************************************************************************
open and listen to a socket
****************************************************************************/
-static int open_server_socket(int port, ulong ipaddr)
+static int open_server_socket(int port, uint32 ipaddr)
{
int s;