From: Günther Deschner Date: Sun, 17 Feb 2008 22:37:45 +0000 (+0100) Subject: Remove unused marshalling for NTSVCS_GET_VERSION. X-Git-Tag: samba-3.2.0pre2~37^2~160^2~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58970cc6a8761c30bc4b772b28bb25a112cb684f;p=thirdparty%2Fsamba.git Remove unused marshalling for NTSVCS_GET_VERSION. Guenther --- diff --git a/source/include/rpc_ntsvcs.h b/source/include/rpc_ntsvcs.h index 045d9b4e925..a2c40384f7a 100644 --- a/source/include/rpc_ntsvcs.h +++ b/source/include/rpc_ntsvcs.h @@ -33,19 +33,6 @@ #define NTSVCS_GET_VERSION_INTERNAL 0x3e -/**************************/ - -typedef struct { - /* nothing in the request */ - uint32 dummy; -} NTSVCS_Q_GET_VERSION; - -typedef struct { - uint32 version; - WERROR status; -} NTSVCS_R_GET_VERSION; - - /**************************/ typedef struct { diff --git a/source/rpc_parse/parse_ntsvcs.c b/source/rpc_parse/parse_ntsvcs.c index 5758517ca0e..89ba2030fb3 100644 --- a/source/rpc_parse/parse_ntsvcs.c +++ b/source/rpc_parse/parse_ntsvcs.c @@ -25,43 +25,6 @@ /******************************************************************* ********************************************************************/ -bool ntsvcs_io_q_get_version(const char *desc, NTSVCS_Q_GET_VERSION *q_u, prs_struct *ps, int depth) -{ - if (q_u == NULL) - return False; - - prs_debug(ps, depth, desc, "ntsvcs_io_q_get_version"); - depth++; - - /* there is nothing to parse in this PDU */ - - return True; - -} - -/******************************************************************* -********************************************************************/ - -bool ntsvcs_io_r_get_version(const char *desc, NTSVCS_R_GET_VERSION *r_u, prs_struct *ps, int depth) -{ - if ( !r_u ) - return False; - - prs_debug(ps, depth, desc, "ntsvcs_io_r_get_version"); - depth++; - - if(!prs_align(ps)) - return False; - - if(!prs_uint32("version", ps, depth, &r_u->version)) - return False; - - if(!prs_werror("status", ps, depth, &r_u->status)) - return False; - - return True; -} - /******************************************************************* ********************************************************************/