diff options
author | Günther Deschner <gd@samba.org> | 2008-02-18 00:24:57 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-18 00:31:14 +0100 |
commit | 9501a920c3b9c680bd0e16b941e084206afb1361 (patch) | |
tree | 70fb5ae57dbe97196302285655988895c8a59887 /source3/rpc_parse | |
parent | 3df6eedccfb1faeb778c4761594a6347bbf0b4b3 (diff) | |
download | samba-9501a920c3b9c680bd0e16b941e084206afb1361.tar.gz samba-9501a920c3b9c680bd0e16b941e084206afb1361.tar.bz2 samba-9501a920c3b9c680bd0e16b941e084206afb1361.zip |
Remove unused marshalling for NTSVCS_GET_DEVICE_LIST_SIZE.
Guenther
(This used to be commit bc1df536fa04e004ccf177e0f3ba56f3c47709aa)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_ntsvcs.c | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/source3/rpc_parse/parse_ntsvcs.c b/source3/rpc_parse/parse_ntsvcs.c index 86e8d9d952..faa7f8ddd3 100644 --- a/source3/rpc_parse/parse_ntsvcs.c +++ b/source3/rpc_parse/parse_ntsvcs.c @@ -25,59 +25,6 @@ /******************************************************************* ********************************************************************/ -/******************************************************************* -********************************************************************/ - -bool ntsvcs_io_q_get_device_list_size(const char *desc, NTSVCS_Q_GET_DEVICE_LIST_SIZE *q_u, prs_struct *ps, int depth) -{ - if (q_u == NULL) - return False; - - prs_debug(ps, depth, desc, "ntsvcs_io_q_get_device_list_size"); - depth++; - - if(!prs_align(ps)) - return False; - - if ( !prs_pointer("devicename", ps, depth, (void*)&q_u->devicename, sizeof(UNISTR2), (PRS_POINTER_CAST)prs_io_unistr2) ) - return False; - if ( !prs_align(ps) ) - return False; - - if ( !prs_uint32("flags", ps, depth, &q_u->flags) ) - return False; - - return True; - -} - -/******************************************************************* -********************************************************************/ - -bool ntsvcs_io_r_get_device_list_size(const char *desc, NTSVCS_R_GET_DEVICE_LIST_SIZE *r_u, prs_struct *ps, int depth) -{ - if ( !r_u ) - return False; - - prs_debug(ps, depth, desc, "ntsvcs_io_r_get_device_list_size"); - depth++; - - if(!prs_align(ps)) - return False; - - if(!prs_uint32("size", ps, depth, &r_u->size)) - return False; - - if(!prs_werror("status", ps, depth, &r_u->status)) - return False; - - return True; -} - - -/******************************************************************* -********************************************************************/ - bool ntsvcs_io_q_get_device_list(const char *desc, NTSVCS_Q_GET_DEVICE_LIST *q_u, prs_struct *ps, int depth) { if (q_u == NULL) |