summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-11-10 15:27:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:07 -0500
commit507286dbcdeeba77e630852257489129e7211b46 (patch)
tree739afd43d6d8c83d82207ceb818edc929493fdf5
parentca403dd4c69f799bce453ac7337fb496e8f63240 (diff)
downloadsamba-507286dbcdeeba77e630852257489129e7211b46.tar.gz
samba-507286dbcdeeba77e630852257489129e7211b46.tar.bz2
samba-507286dbcdeeba77e630852257489129e7211b46.zip
r11647: add smbcli_ prefix
metze (This used to be commit 356e7d037cf3fc24844b2efa5071917ea03e6163)
-rw-r--r--source4/libcli/raw/clitransport.c2
-rw-r--r--source4/libcli/raw/rawrequest.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/clitransport.c b/source4/libcli/raw/clitransport.c
index 4fed2ed9a0..f579457252 100644
--- a/source4/libcli/raw/clitransport.c
+++ b/source4/libcli/raw/clitransport.c
@@ -356,7 +356,7 @@ static NTSTATUS smbcli_transport_finish_recv(void *private, DATA_BLOB blob)
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;
}
diff --git a/source4/libcli/raw/rawrequest.c b/source4/libcli/raw/rawrequest.c
index e01626a15c..33ac9c55b1 100644
--- a/source4/libcli/raw/rawrequest.c
+++ b/source4/libcli/raw/rawrequest.c
@@ -360,7 +360,7 @@ BOOL smbcli_request_receive_more(struct smbcli_request *req)
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 */