s4:rpc_server: remove unused dcesrv_connection_context->assoc_group
authorStefan Metzmacher <metze@samba.org>
Wed, 15 Jul 2015 10:02:32 +0000 (12:02 +0200)
committerStefan Metzmacher <metze@samba.org>
Fri, 24 Jun 2016 12:09:01 +0000 (14:09 +0200)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
source4/rpc_server/dcerpc_server.c
source4/rpc_server/dcerpc_server.h

index fee67653a2fbd9aa0a118cbd68e2c63b0c8d469c..f45e588eb1c19596e8cf6c5ec8e05b4df2fe8d8b 100644 (file)
@@ -765,8 +765,6 @@ static NTSTATUS dcesrv_bind(struct dcesrv_call_state *call)
                context->conn = call->conn;
                context->iface = iface;
                context->context_id = context_id;
-               /* legacy for openchange dcesrv_mapiproxy.c */
-               context->assoc_group = call->conn->assoc_group;
                context->private_data = NULL;
                DLIST_ADD(call->conn->contexts, context);
                call->context = context;
@@ -984,8 +982,6 @@ static NTSTATUS dcesrv_alter_new_context(struct dcesrv_call_state *call, uint16_
        context->conn = call->conn;
        context->iface = iface;
        context->context_id = context_id;
-       /* legacy for openchange dcesrv_mapiproxy.c */
-       context->assoc_group = call->conn->assoc_group;
        context->private_data = NULL;
        DLIST_ADD(call->conn->contexts, context);
        call->context = context;
index ef51dac40f4c21a119ba2bad7232e17365b7e03d..2dec40e0c9cab5b7296a8e02c25c6419445a77cd 100644 (file)
@@ -175,9 +175,6 @@ struct dcesrv_connection_context {
        struct dcesrv_connection_context *next, *prev;
        uint16_t context_id;
 
-       /* TODO: remove this legacy (for openchange) in master */
-       struct dcesrv_assoc_group *assoc_group;
-
        /* the connection this is on */
        struct dcesrv_connection *conn;