svn commit: samba r11647 - in branches/SAMBA_4_0/source/libcli/raw: .

metze at samba.org metze at samba.org
Thu Nov 10 15:27:28 GMT 2005


Author: metze
Date: 2005-11-10 15:27:27 +0000 (Thu, 10 Nov 2005)
New Revision: 11647

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

Log:
add smbcli_ prefix

metze
Modified:
   branches/SAMBA_4_0/source/libcli/raw/clitransport.c
   branches/SAMBA_4_0/source/libcli/raw/rawrequest.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/raw/clitransport.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/clitransport.c	2005-11-10 14:54:05 UTC (rev 11646)
+++ branches/SAMBA_4_0/source/libcli/raw/clitransport.c	2005-11-10 15:27:27 UTC (rev 11647)
@@ -356,7 +356,7 @@
 	vwv = hdr + HDR_VWV;
 
 	/* see if it could be an oplock break request */
-	if (handle_oplock_break(transport, len, hdr, vwv)) {
+	if (smbcli_handle_oplock_break(transport, len, hdr, vwv)) {
 		talloc_free(buffer);
 		return NT_STATUS_OK;
 	}

Modified: branches/SAMBA_4_0/source/libcli/raw/rawrequest.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/raw/rawrequest.c	2005-11-10 14:54:05 UTC (rev 11646)
+++ branches/SAMBA_4_0/source/libcli/raw/rawrequest.c	2005-11-10 15:27:27 UTC (rev 11647)
@@ -360,7 +360,7 @@
   handle oplock break requests from the server - return True if the request was
   an oplock break
 */
-BOOL handle_oplock_break(struct smbcli_transport *transport, uint_t len, const uint8_t *hdr, const uint8_t *vwv)
+BOOL smbcli_handle_oplock_break(struct smbcli_transport *transport, uint_t len, const uint8_t *hdr, const uint8_t *vwv)
 {
 	/* we must be very fussy about what we consider an oplock break to avoid
 	   matching readbraw replies */



More information about the samba-cvs mailing list