From 507286dbcdeeba77e630852257489129e7211b46 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 10 Nov 2005 15:27:27 +0000 Subject: r11647: add smbcli_ prefix metze (This used to be commit 356e7d037cf3fc24844b2efa5071917ea03e6163) --- source4/libcli/raw/clitransport.c | 2 +- source4/libcli/raw/rawrequest.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/libcli') 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 */ -- cgit