Remove unused marshalling for SVCCTL_LOCK_SERVICE_DB.
authorGünther Deschner <gd@samba.org>
Tue, 19 Feb 2008 01:48:08 +0000 (02:48 +0100)
committerGünther Deschner <gd@samba.org>
Tue, 19 Feb 2008 02:13:42 +0000 (03:13 +0100)
Guenther
(This used to be commit 23d37a9aed145d38e2bd98b170b65096ab69b0d9)

source3/include/rpc_svcctl.h
source3/rpc_parse/parse_svcctl.c

index 2bd28db291141006b0b36ae6f7691bb4e98a93d2..9d58a0903e4615ec5e09123219bd00a90212faf2 100644 (file)
@@ -272,18 +272,6 @@ typedef struct {
 } SVCCTL_R_QUERY_SERVICE_STATUSEX;
 
 
-/**************************/
-
-typedef struct {
-       POLICY_HND handle;
-} SVCCTL_Q_LOCK_SERVICE_DB;
-
-typedef struct {
-       POLICY_HND h_lock;
-       WERROR status;
-} SVCCTL_R_LOCK_SERVICE_DB;
-
-
 /**************************/
 
 typedef struct {
index ef9f03705de993d354b75b10eebf667ee6029764..d5b14665353c06f6db3b32594bf8a3ff374fc048 100644 (file)
@@ -593,50 +593,6 @@ bool svcctl_io_r_query_service_status_ex(const char *desc, SVCCTL_R_QUERY_SERVIC
 /*******************************************************************
 ********************************************************************/
 
-bool svcctl_io_q_lock_service_db(const char *desc, SVCCTL_Q_LOCK_SERVICE_DB *q_u, prs_struct *ps, int depth)
-{
-       if (q_u == NULL)
-               return False;
-
-       prs_debug(ps, depth, desc, "svcctl_io_q_lock_service_db");
-       depth++;
-
-       if(!prs_align(ps))
-               return False;
-
-       if(!smb_io_pol_hnd("scm_handle", &q_u->handle, ps, depth))
-               return False;
-
-       return True;
-
-}
-
-/*******************************************************************
-********************************************************************/
-
-bool svcctl_io_r_lock_service_db(const char *desc, SVCCTL_R_LOCK_SERVICE_DB *r_u, prs_struct *ps, int depth)
-{
-       if ( !r_u )
-               return False;
-
-       prs_debug(ps, depth, desc, "svcctl_io_r_lock_service_db");
-       depth++;
-
-       if(!prs_align(ps))
-               return False;
-
-       if(!smb_io_pol_hnd("lock_handle", &r_u->h_lock, ps, depth))
-               return False;
-
-       if(!prs_werror("status", ps, depth, &r_u->status))
-               return False;
-
-       return True;
-}
-
-/*******************************************************************
-********************************************************************/
-
 bool svcctl_io_q_unlock_service_db(const char *desc, SVCCTL_Q_UNLOCK_SERVICE_DB *q_u, prs_struct *ps, int depth)
 {
        if (q_u == NULL)