diff options
author | Andrew Tridgell <tridge@samba.org> | 1999-04-17 14:13:06 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1999-04-17 14:13:06 +0000 |
commit | 4c5c9d6734786c7cc3ed2d03e66f7ae586e8f610 (patch) | |
tree | 029727324a0645214b5cd9ce649de5ae0f83e913 /source3/utils | |
parent | 388a408a73f9bf7bede7747745f92f5d8909f4fd (diff) | |
download | samba-4c5c9d6734786c7cc3ed2d03e66f7ae586e8f610.tar.gz samba-4c5c9d6734786c7cc3ed2d03e66f7ae586e8f610.tar.bz2 samba-4c5c9d6734786c7cc3ed2d03e66f7ae586e8f610.zip |
open_socket_in() takes a different number of parameters in the head
branch. We need that merge soon!
(This used to be commit 5fb06c603efe08ea64da602de848b79fea6505c0)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbfilter.c b/source3/utils/smbfilter.c index 81b10e4519..4f6420c767 100644 --- a/source3/utils/smbfilter.c +++ b/source3/utils/smbfilter.c @@ -159,7 +159,7 @@ static void start_filter(char *desthost) CatchChild(); /* start listening on port 139 locally */ - s = open_socket_in(SOCK_STREAM, 139, 0, 0, True); + s = open_socket_in(SOCK_STREAM, 139, 0, 0); if (s == -1) { DEBUG(0,("bind failed\n")); |