r20858: change_notify_reply_packet is static
authorVolker Lendecke <vlendec@samba.org>
Wed, 17 Jan 2007 18:26:37 +0000 (18:26 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:17:14 +0000 (12:17 -0500)
(This used to be commit a1d0644d156c360d52fb837d3eecddb202135ebe)

source3/smbd/notify.c

index 3b01c2c786791885a867be33c8454996b1aa17a9..2c762bd75907eec98184dfc498132caf81febc95 100644 (file)
@@ -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,