summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2019-08-29 22:19:42 +0200
committerAndrew Bartlett <abartlet@samba.org>2019-09-01 22:21:27 +0000
commit619e8f46d8a92d2453e1f021a2a330ebbefc7025 (patch)
tree01077ac55c09eaa1bd039fbf1c9c214b1d8d269b /librpc
parent736bb924f7e70564df0b94db1deaf9e26f638109 (diff)
downloadsamba-619e8f46d8a92d2453e1f021a2a330ebbefc7025.tar.gz
Spelling fixes s/ upto / up to /
Signed-off-by: Mathieu Parent <math.parent@gmail.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/ndr/ndr_sec_helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/ndr/ndr_sec_helper.c b/librpc/ndr/ndr_sec_helper.c
index 5a2ed16e33e..b9e10cca27f 100644
--- a/librpc/ndr/ndr_sec_helper.c
+++ b/librpc/ndr/ndr_sec_helper.c
@@ -199,7 +199,7 @@ enum ndr_err_code ndr_push_dom_sid2(struct ndr_push *ndr, int ndr_flags, const s
}
/*
- parse a dom_sid28 - this is a dom_sid in a fixed 28 byte buffer, so we need to ensure there are only upto 5 sub_auth
+ parse a dom_sid28 - this is a dom_sid in a fixed 28 byte buffer, so we need to ensure there are only up to 5 sub_auth
*/
enum ndr_err_code ndr_pull_dom_sid28(struct ndr_pull *ndr, int ndr_flags, struct dom_sid *sid)
{
@@ -246,7 +246,7 @@ enum ndr_err_code ndr_push_dom_sid28(struct ndr_push *ndr, int ndr_flags, const
if (sid->num_auths > 5) {
return ndr_push_error(ndr, NDR_ERR_RANGE,
- "dom_sid28 allows only upto 5 sub auth [%u]",
+ "dom_sid28 allows only up to 5 sub auth [%u]",
sid->num_auths);
}