diff options
-rw-r--r-- | source4/torture/rpc/srvsvc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/rpc/srvsvc.c b/source4/torture/rpc/srvsvc.c index 4137052326..16f267326c 100644 --- a/source4/torture/rpc/srvsvc.c +++ b/source4/torture/rpc/srvsvc.c @@ -306,7 +306,7 @@ static bool test_NetConnEnum(struct torture_context *tctx, ZERO_STRUCT(info_ctr); r.in.server_unc = talloc_asprintf(tctx,"\\\\%s",dcerpc_server_name(p)); - r.in.path = talloc_asprintf(tctx,"%s","ADMIN$"); + r.in.path = talloc_asprintf(tctx,"%s","IPC$"); r.in.info_ctr = &info_ctr; r.in.max_buffer = (uint32_t)-1; r.in.resume_handle = NULL; @@ -534,13 +534,13 @@ static bool test_NetShareGetInfo(struct torture_context *tctx, static bool test_NetShareGetInfoAdminFull(struct torture_context *tctx, struct dcerpc_pipe *p) { - return test_NetShareGetInfo(tctx, p, "ADMIN$", true); + return test_NetShareGetInfo(tctx, p, "IPC$", true); } static bool test_NetShareGetInfoAdminAnon(struct torture_context *tctx, struct dcerpc_pipe *p) { - return test_NetShareGetInfo(tctx, p, "ADMIN$", false); + return test_NetShareGetInfo(tctx, p, "IPC$", false); } static bool test_NetShareAddSetDel(struct torture_context *tctx, |