Author: vlendec Date: 2007-08-03 15:45:41 +0000 (Fri, 03 Aug 2007) New Revision: 24162
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24162 Log: send_trans2_replies is now static in trans2.c Modified: branches/SAMBA_3_2/source/smbd/trans2.c Changeset: Modified: branches/SAMBA_3_2/source/smbd/trans2.c =================================================================== --- branches/SAMBA_3_2/source/smbd/trans2.c 2007-08-03 15:27:28 UTC (rev 24161) +++ branches/SAMBA_3_2/source/smbd/trans2.c 2007-08-03 15:45:41 UTC (rev 24162) @@ -576,14 +576,14 @@ HACK ! Always assumes smb_setup field is zero. ****************************************************************************/ -int send_trans2_replies(const char *inbuf, - char *outbuf, - int bufsize, - const char *params, - int paramsize, - const char *pdata, - int datasize, - int max_data_bytes) +static int send_trans2_replies(const char *inbuf, + char *outbuf, + int bufsize, + const char *params, + int paramsize, + const char *pdata, + int datasize, + int max_data_bytes) { /* As we are using a protocol > LANMAN1 then the max_send variable must have been set in the sessetupX call.
