From ab41ff67f1308389a130c3a4ff804545d8998dd1 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 17 Jan 2007 18:26:37 +0000 Subject: r20858: change_notify_reply_packet is static (This used to be commit a1d0644d156c360d52fb837d3eecddb202135ebe) --- source3/smbd/notify.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3') 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, -- cgit