diff options
author | Volker Lendecke <vl@samba.org> | 2008-11-01 23:30:07 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-11-01 23:26:21 +0100 |
commit | 334d590b5e769a7e893c59f06ebc5f44e76d13a6 (patch) | |
tree | cf7a930e0a588d051dabd9b9fe1bf026fc1227e8 | |
parent | fa47f033562b0d8367f3f84abc19149ca95a6044 (diff) | |
download | samba-334d590b5e769a7e893c59f06ebc5f44e76d13a6.tar.gz samba-334d590b5e769a7e893c59f06ebc5f44e76d13a6.tar.bz2 samba-334d590b5e769a7e893c59f06ebc5f44e76d13a6.zip |
The non-talloc versions of srvstr_pull are not longer needed
-rw-r--r-- | source3/include/srvstr.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/include/srvstr.h b/source3/include/srvstr.h index 588a807f64..0e8e275655 100644 --- a/source3/include/srvstr.h +++ b/source3/include/srvstr.h @@ -17,10 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#define srvstr_pull(base_ptr, smb_flags2, dest, src, dest_len, src_len, flags) \ - pull_string(base_ptr, smb_flags2, dest, src, dest_len, src_len, flags) - -/* talloc version of above. */ #define srvstr_pull_talloc(ctx, base_ptr, smb_flags2, dest, src, src_len, flags) \ pull_string_talloc(ctx, base_ptr, smb_flags2, dest, src, src_len, flags) @@ -29,9 +25,5 @@ end of the smbbuf area */ -#define srvstr_pull_buf(inbuf, smb_flags2, dest, src, dest_len, flags) \ - pull_string(inbuf, smb_flags2, dest, src, dest_len, smb_bufrem(inbuf, src), flags) - -/* talloc version of above. */ #define srvstr_pull_buf_talloc(ctx, inbuf, smb_flags2, dest, src, flags) \ pull_string_talloc(ctx, inbuf, smb_flags2, dest, src, smb_bufrem(inbuf, src), flags) |