summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-22 11:49:22 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-22 11:49:22 +0000
commitbe77d9c60d17e0ef2ed0b51ea0814c42a41a40a3 (patch)
treef7c66a83daa4a555a7029a54b2fc7886ad1f0d91 /source4/librpc/rpc
parent677fb26deba2e8b8965c41d7b7455063db031a2c (diff)
downloadsamba-be77d9c60d17e0ef2ed0b51ea0814c42a41a40a3.tar.gz
samba-be77d9c60d17e0ef2ed0b51ea0814c42a41a40a3.tar.bz2
samba-be77d9c60d17e0ef2ed0b51ea0814c42a41a40a3.zip
* fixed null terminated string handling
* fixed nested relative offsets in push functions the spoolss torture test now passes! (This used to be commit 60ced76160e4f4e2b511ebbeec31130c8ebcdd22)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r--source4/librpc/rpc/dcerpc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c
index 871d0fec24..2cb52ece0b 100644
--- a/source4/librpc/rpc/dcerpc.c
+++ b/source4/librpc/rpc/dcerpc.c
@@ -761,7 +761,7 @@ static NTSTATUS dcerpc_ndr_validate_in(TALLOC_CTX *mem_ctx,
status = ndr_pull(pull, NDR_IN, st);
if (!NT_STATUS_IS_OK(status)) {
return ndr_pull_error(pull, NDR_ERR_VALIDATE,
- "Error in input validation pull - %s",
+ "failed input validation pull - %s",
nt_errstr(status));
}
@@ -773,7 +773,7 @@ static NTSTATUS dcerpc_ndr_validate_in(TALLOC_CTX *mem_ctx,
status = ndr_push(push, NDR_IN, st);
if (!NT_STATUS_IS_OK(status)) {
return ndr_push_error(push, NDR_ERR_VALIDATE,
- "Error in input validation push - %s",
+ "failed input validation push - %s",
nt_errstr(status));
}
@@ -785,7 +785,7 @@ static NTSTATUS dcerpc_ndr_validate_in(TALLOC_CTX *mem_ctx,
DEBUG(3,("secondary:\n"));
dump_data(3, blob2.data, blob2.length);
return ndr_push_error(push, NDR_ERR_VALIDATE,
- "Error in input validation data - %s",
+ "failed input validation data - %s",
nt_errstr(status));
}
@@ -825,7 +825,7 @@ static NTSTATUS dcerpc_ndr_validate_out(TALLOC_CTX *mem_ctx,
status = ndr_push(push, NDR_OUT, struct_ptr);
if (!NT_STATUS_IS_OK(status)) {
return ndr_push_error(push, NDR_ERR_VALIDATE,
- "Error in output validation push - %s",
+ "failed output validation push - %s",
nt_errstr(status));
}
@@ -840,7 +840,7 @@ static NTSTATUS dcerpc_ndr_validate_out(TALLOC_CTX *mem_ctx,
status = ndr_pull(pull, NDR_OUT, st);
if (!NT_STATUS_IS_OK(status)) {
return ndr_pull_error(pull, NDR_ERR_VALIDATE,
- "Error in output validation pull - %s",
+ "failed output validation pull - %s",
nt_errstr(status));
}
@@ -852,7 +852,7 @@ static NTSTATUS dcerpc_ndr_validate_out(TALLOC_CTX *mem_ctx,
status = ndr_push(push, NDR_OUT, st);
if (!NT_STATUS_IS_OK(status)) {
return ndr_push_error(push, NDR_ERR_VALIDATE,
- "Error in output validation push2 - %s",
+ "failed output validation push2 - %s",
nt_errstr(status));
}
@@ -864,7 +864,7 @@ static NTSTATUS dcerpc_ndr_validate_out(TALLOC_CTX *mem_ctx,
DEBUG(3,("secondary:\n"));
dump_data(3, blob2.data, blob2.length);
return ndr_push_error(push, NDR_ERR_VALIDATE,
- "Error in output validation data - %s",
+ "failed output validation data - %s",
nt_errstr(status));
}