summaryrefslogtreecommitdiff
path: root/source3/smbd/notify.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-01-17 18:26:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:14 -0500
commitab41ff67f1308389a130c3a4ff804545d8998dd1 (patch)
treecfc3950efa316ea74e64d4038b59e2f7adbe30fa /source3/smbd/notify.c
parentbfd099e148ed97394bc858e746a1a998a71ac43c (diff)
downloadsamba-ab41ff67f1308389a130c3a4ff804545d8998dd1.tar.gz
samba-ab41ff67f1308389a130c3a4ff804545d8998dd1.tar.bz2
samba-ab41ff67f1308389a130c3a4ff804545d8998dd1.zip
r20858: change_notify_reply_packet is static
(This used to be commit a1d0644d156c360d52fb837d3eecddb202135ebe)
Diffstat (limited to 'source3/smbd/notify.c')
-rw-r--r--source3/smbd/notify.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c
index 3b01c2c786..2c762bd759 100644
--- a/source3/smbd/notify.c
+++ b/source3/smbd/notify.c
@@ -109,7 +109,8 @@ static BOOL notify_marshall_changes(unsigned num_changes,
Setup the common parts of the return packet and send it.
*****************************************************************************/
-void change_notify_reply_packet(const char *request_buf, NTSTATUS error_code)
+static void change_notify_reply_packet(const char *request_buf,
+ NTSTATUS error_code)
{
char outbuf[smb_size+38];
@@ -126,7 +127,8 @@ void change_notify_reply_packet(const char *request_buf, NTSTATUS error_code)
show_msg(outbuf);
if (!send_smb(smbd_server_fd(),outbuf))
- exit_server_cleanly("change_notify_reply_packet: send_smb failed.");
+ exit_server_cleanly("change_notify_reply_packet: send_smb "
+ "failed.");
}
void change_notify_reply(const char *request_buf, uint32 max_param_count,