summaryrefslogtreecommitdiff
path: root/source3/nmbd
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-12-21 00:37:49 +0000
committerMartin Pool <mbp@samba.org>2001-12-21 00:37:49 +0000
commitbf65820af242786bd66d814fc3e9d89920a49f8e (patch)
tree59f7ab18083677a7857c37befb2e09b8316da1b2 /source3/nmbd
parentdf28dee653ea2f685c7779fed80fe639784699f5 (diff)
downloadsamba-bf65820af242786bd66d814fc3e9d89920a49f8e.tar.gz
samba-bf65820af242786bd66d814fc3e9d89920a49f8e.tar.bz2
samba-bf65820af242786bd66d814fc3e9d89920a49f8e.zip
Add an output parameter to message_send_all that says how many
messages were sent, so you know how many replies to expect. Const and doc religion. (This used to be commit 22e510ea0d69356be4fd2fa5ad9e9f4e84f62337)
Diffstat (limited to 'source3/nmbd')
-rw-r--r--source3/nmbd/nmbd_processlogon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_processlogon.c b/source3/nmbd/nmbd_processlogon.c
index bcd1e1a1ff..b348250f86 100644
--- a/source3/nmbd/nmbd_processlogon.c
+++ b/source3/nmbd/nmbd_processlogon.c
@@ -55,7 +55,7 @@ static void send_repl_message(uint32 low_serial)
low_serial));
message_send_all(tdb, MSG_SMB_SAM_REPL, &low_serial,
- sizeof(low_serial), False);
+ sizeof(low_serial), False, NULL);
tdb_close(tdb);
}