diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-04 01:09:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:27 -0500 |
commit | 695677f4bb078291c683931d5017f339811abf90 (patch) | |
tree | 3711e7f7b111c192067e09a34a6cc255c9a6056d /source4/librpc/rpc | |
parent | 9a65c54c72cb5cbbe3d57df32193568850266b3b (diff) | |
download | samba-695677f4bb078291c683931d5017f339811abf90.tar.gz samba-695677f4bb078291c683931d5017f339811abf90.tar.bz2 samba-695677f4bb078291c683931d5017f339811abf90.zip |
r3515: Fix RemoteActivation correctly this time (-:
Thanks to tridge for some help on this one!
(This used to be commit 1104667190aa144e2c7d79ece9a55502b98d0351)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index 7b49e4f8d7..8eb058d7b3 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -24,6 +24,9 @@ #include "includes.h" #include "system/network.h" #include "librpc/gen_ndr/ndr_epmapper.h" +#include "librpc/gen_ndr/ndr_remact.h" +#include "librpc/gen_ndr/ndr_oxidresolver.h" +#include "librpc/gen_ndr/ndr_mgmt.h" #include "librpc/gen_ndr/tables.h" /* @@ -659,7 +662,10 @@ NTSTATUS dcerpc_epm_map_binding(TALLOC_CTX *mem_ctx, struct dcerpc_binding *bind struct dcerpc_binding epmapper_binding; - if (!strcmp(uuid, DCERPC_EPMAPPER_UUID)) { + if (!strcmp(uuid, DCERPC_EPMAPPER_UUID) || + !strcmp(uuid, DCERPC_MGMT_UUID) || + !strcmp(uuid, DCERPC_IREMOTEACTIVATION_UUID) || + !strcmp(uuid, DCERPC_IOXIDRESOLVER_UUID)) { switch(binding->transport) { case NCACN_IP_TCP: binding->endpoint = talloc_asprintf(mem_ctx, "%d", EPMAPPER_PORT); return NT_STATUS_OK; case NCALRPC: binding->endpoint = EPMAPPER_IDENTIFIER; return NT_STATUS_OK; |