diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-11-20 11:08:33 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:45:49 +0100 |
commit | e399a606f512df15316bc5e804384ffa475ca446 (patch) | |
tree | eacbc1b226e14d52a79b823848613c34bf1f7703 /source4/librpc/ndr/ndr.c | |
parent | 981437efbc966c4bb0880fc0b02715d297ae6644 (diff) | |
download | samba-e399a606f512df15316bc5e804384ffa475ca446.tar.gz samba-e399a606f512df15316bc5e804384ffa475ca446.tar.bz2 samba-e399a606f512df15316bc5e804384ffa475ca446.zip |
r26054: ndr: remove ndr_push/pull_save
Using a uint32_t offset is all we need
metze
(This used to be commit 2c06b48a858016f9329dcd73231fb3c7b711a918)
Diffstat (limited to 'source4/librpc/ndr/ndr.c')
-rw-r--r-- | source4/librpc/ndr/ndr.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/source4/librpc/ndr/ndr.c b/source4/librpc/ndr/ndr.c index c51e77cde5..40afeacebf 100644 --- a/source4/librpc/ndr/ndr.c +++ b/source4/librpc/ndr/ndr.c @@ -98,21 +98,6 @@ static enum ndr_err_code ndr_pull_set_offset(struct ndr_pull *ndr, uint32_t ofs) return NDR_ERR_SUCCESS; } -/* save the offset/size of the current ndr state */ -_PUBLIC_ void ndr_pull_save(struct ndr_pull *ndr, struct ndr_pull_save *save) -{ - save->offset = ndr->offset; - save->data_size = ndr->data_size; -} - -/* restore the size/offset of a ndr structure */ -_PUBLIC_ void ndr_pull_restore(struct ndr_pull *ndr, struct ndr_pull_save *save) -{ - ndr->offset = save->offset; - ndr->data_size = save->data_size; -} - - /* create a ndr_push structure, ready for some marshalling */ _PUBLIC_ struct ndr_push *ndr_push_init_ctx(TALLOC_CTX *mem_ctx) { |