svn commit: samba r20858 - in branches/SAMBA_3_0/source/smbd: .

vlendec at samba.org vlendec at samba.org
Wed Jan 17 18:26:37 GMT 2007


Author: vlendec
Date: 2007-01-17 18:26:37 +0000 (Wed, 17 Jan 2007)
New Revision: 20858

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20858

Log:
change_notify_reply_packet is static
Modified:
   branches/SAMBA_3_0/source/smbd/notify.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/notify.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/notify.c	2007-01-17 18:25:35 UTC (rev 20857)
+++ branches/SAMBA_3_0/source/smbd/notify.c	2007-01-17 18:26:37 UTC (rev 20858)
@@ -109,7 +109,8 @@
  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 @@
 
 	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,



More information about the samba-cvs mailing list