diff options
author | Volker Lendecke <vl@samba.org> | 2008-11-02 01:27:41 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-11-02 09:22:40 +0100 |
commit | e48364af2f53436e1110bb942665a2fa19a26322 (patch) | |
tree | 73c00dfe8c9993dac978e790ce160b42adec93c2 /source3 | |
parent | af7cf4f992d8bb3b6677c094c85b9b1055a6ffc9 (diff) | |
download | samba-e48364af2f53436e1110bb942665a2fa19a26322.tar.gz samba-e48364af2f53436e1110bb942665a2fa19a26322.tar.bz2 samba-e48364af2f53436e1110bb942665a2fa19a26322.zip |
Rename "inbuf" to "base_ptr" in srvstr_get_path_*
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index ebd85bcd28..c7722804b3 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -208,7 +208,7 @@ NTSTATUS check_path_syntax_posix(char *path) ****************************************************************************/ size_t srvstr_get_path_wcard(TALLOC_CTX *ctx, - const char *inbuf, + const char *base_ptr, uint16 smb_flags2, char **pp_dest, const char *src, @@ -221,8 +221,8 @@ size_t srvstr_get_path_wcard(TALLOC_CTX *ctx, *pp_dest = NULL; - ret = srvstr_pull_talloc(ctx, inbuf, smb_flags2, pp_dest, src, src_len, - flags); + ret = srvstr_pull_talloc(ctx, base_ptr, smb_flags2, pp_dest, src, + src_len, flags); if (!*pp_dest) { *err = NT_STATUS_INVALID_PARAMETER; @@ -254,7 +254,7 @@ size_t srvstr_get_path_wcard(TALLOC_CTX *ctx, ****************************************************************************/ size_t srvstr_get_path(TALLOC_CTX *ctx, - const char *inbuf, + const char *base_ptr, uint16 smb_flags2, char **pp_dest, const char *src, @@ -263,7 +263,7 @@ size_t srvstr_get_path(TALLOC_CTX *ctx, NTSTATUS *err) { bool ignore; - return srvstr_get_path_wcard(ctx, inbuf, smb_flags2, pp_dest, src, + return srvstr_get_path_wcard(ctx, base_ptr, smb_flags2, pp_dest, src, src_len, flags, err, &ignore); } |