From: Joseph Sutton Date: Wed, 19 Jul 2023 22:41:24 +0000 (+1200) Subject: librpc/ndr: Fix code spelling X-Git-Tag: tevent-0.16.0~1228 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae9e56a1bc4615ce399d6682be69f05ef04c5619;p=thirdparty%2Fsamba.git librpc/ndr: Fix code spelling Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/librpc/ndr/ndr.c b/librpc/ndr/ndr.c index d187a0d0110..43a1f6dd3d3 100644 --- a/librpc/ndr/ndr.c +++ b/librpc/ndr/ndr.c @@ -778,7 +778,7 @@ _PUBLIC_ enum ndr_err_code ndr_pull_subcontext_start(struct ndr_pull *ndr, /* * Private Header for Constructed Type */ - /* length - will be updated latter */ + /* length - will be updated later */ NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &content_size)); if (size_is >= 0 && size_is != content_size) { return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext (PULL) size_is(%d) mismatch content_size %d", @@ -958,7 +958,7 @@ _PUBLIC_ enum ndr_err_code ndr_push_subcontext_end(struct ndr_push *ndr, /* * Private Header for Constructed Type */ - /* length - will be updated latter */ + /* length - will be updated later */ NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, subndr->offset)); /* reserved */