1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-21 03:33:16 +03:00

r24606: move librpc/rpc/table.c -> librpc/ndr/ndr_table.c

and rename the containing functions to have a ndr_
prefix

metze
This commit is contained in:
Stefan Metzmacher
2007-08-21 19:35:43 +00:00
committed by Gerald (Jerry) Carter
parent fa577a1294
commit cb234d43ae
12 changed files with 60 additions and 59 deletions

View File

@@ -28,7 +28,7 @@
#include "scripting/ejs/ejsrpc.h"
#include "lib/util/dlinklist.h"
#include "lib/events/events.h"
#include "librpc/rpc/dcerpc_table.h"
#include "librpc/ndr/ndr_table.h"
#include "auth/credentials/credentials.h"
#include "librpc/rpc/dcerpc.h"
#include "cluster/cluster.h"
@@ -136,7 +136,7 @@ static int ejs_rpc_connect(MprVarHandle eid, int argc, char **argv)
pipe_name = mprToString(mprGetProperty(this, "pipe_name", NULL));
}
iface = idl_iface_by_name(pipe_name);
iface = ndr_table_by_name(pipe_name);
if (iface == NULL) {
status = NT_STATUS_OBJECT_NAME_INVALID;
goto done;