From: Joseph Sutton Date: Mon, 13 Nov 2023 04:04:34 +0000 (+1300) Subject: librpc:ndr: Fix error message X-Git-Tag: talloc-2.4.2~663 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e580fadeed52ab723c1f6252dd4a49d0824a229;p=thirdparty%2Fsamba.git librpc:ndr: Fix error message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- 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)); } }