From 5e580fadeed52ab723c1f6252dd4a49d0824a229 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Mon, 13 Nov 2023 17:04:34 +1300 Subject: [PATCH] librpc:ndr: Fix error message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- librpc/ndr/ndr_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librpc/ndr/ndr_string.c b/librpc/ndr/ndr_string.c index 9b100966f98..e527cd4d3d6 100644 --- a/librpc/ndr/ndr_string.c +++ b/librpc/ndr/ndr_string.c @@ -234,7 +234,7 @@ _PUBLIC_ enum ndr_err_code ndr_pull_string(struct ndr_pull *ndr, ndr_flags_type } } if (converted_size > 0 && as[converted_size-1] != '\0') { - DEBUG(6,("long string '%s', send without NULL termination (which was expected)\n", as)); + DEBUG(6,("long string '%s', sent without NULL termination (which was expected)\n", as)); } } -- 2.47.3