diff options
author | Martin Pool <mbp@samba.org> | 2001-12-21 00:37:49 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-12-21 00:37:49 +0000 |
commit | bf65820af242786bd66d814fc3e9d89920a49f8e (patch) | |
tree | 59f7ab18083677a7857c37befb2e09b8316da1b2 /source3/smbd | |
parent | df28dee653ea2f685c7779fed80fe639784699f5 (diff) | |
download | samba-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/smbd')
-rw-r--r-- | source3/smbd/lanman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/lanman.c b/source3/smbd/lanman.c index 34dcf6c211..64da736ae2 100644 --- a/source3/smbd/lanman.c +++ b/source3/smbd/lanman.c @@ -1724,7 +1724,7 @@ static BOOL api_RNetShareAdd(connection_struct *conn,uint16 vuid, char *param,ch goto error_exit; } else { SAFE_FREE(command); - message_send_all(conn_tdb_ctx(), MSG_SMB_CONF_UPDATED, NULL, 0, False); + message_send_all(conn_tdb_ctx(), MSG_SMB_CONF_UPDATED, NULL, 0, False, NULL); } } else return False; |