diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-17 18:26:37 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2007-01-17 18:26:37 +0000 |
commit | 1d88342cc9cea1a0734bdd4d28bff2b8bf4a6852 (patch) | |
tree | c11fcc1fbba41992eeb063e16c799c5358fec979 /source | |
parent | 37b015b36bcf5da6ac985105b06ffcbe819a01de (diff) | |
download | samba-1d88342cc9cea1a0734bdd4d28bff2b8bf4a6852.tar.gz samba-1d88342cc9cea1a0734bdd4d28bff2b8bf4a6852.tar.xz samba-1d88342cc9cea1a0734bdd4d28bff2b8bf4a6852.zip |
r20858: change_notify_reply_packet is static
Diffstat (limited to 'source')
-rw-r--r-- | source/smbd/notify.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/smbd/notify.c b/source/smbd/notify.c index 3b01c2c7867..2c762bd7590 100644 --- a/source/smbd/notify.c +++ b/source/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, |