From: Mathieu Parent Date: Thu, 29 Aug 2019 20:19:42 +0000 (+0200) Subject: Spelling fixes s/ upto / up to / X-Git-Tag: tevent-0.10.1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=619e8f46d8a92d2453e1f021a2a330ebbefc7025;p=thirdparty%2Fsamba.git Spelling fixes s/ upto / up to / Signed-off-by: Mathieu Parent Reviewed-by: Andrew Bartlett Reviewed-by: Gary Lockyer --- 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); } diff --git a/source4/torture/basic/delaywrite.c b/source4/torture/basic/delaywrite.c index 34787168872..620870120bd 100644 --- a/source4/torture/basic/delaywrite.c +++ b/source4/torture/basic/delaywrite.c @@ -1440,7 +1440,7 @@ static bool test_delayed_write_update3(struct torture_context *tctx, /* * make sure the write time is updated 2 seconds later * calcuated from the first write - * (but expect upto 5 seconds extra time for a busy server) + * (but expect up to 5 seconds extra time for a busy server) */ start = timeval_current(); end = timeval_add(&start, 7 * sec, 0); @@ -1602,7 +1602,7 @@ static bool test_delayed_write_update3a(struct torture_context *tctx, /* * make sure the write time is updated 2 seconds later * calcuated from the first write - * (but expect upto 5 seconds extra time for a busy server) + * (but expect up to 5 seconds extra time for a busy server) */ start = timeval_current(); end = timeval_add(&start, 7 * sec, 0); @@ -1813,7 +1813,7 @@ static bool test_delayed_write_update3b(struct torture_context *tctx, /* * make sure the write time is updated 2 seconds later * calcuated from the first write - * (but expect upto 5 seconds extra time for a busy server) + * (but expect up to 5 seconds extra time for a busy server) */ start = timeval_current(); end = timeval_add(&start, 7 * sec, 0); @@ -2188,7 +2188,7 @@ static bool test_delayed_write_update4(struct torture_context *tctx, /* * make sure the write time is updated 2 seconds later * calcuated from the first write - * (but expect upto 3 seconds extra time for a busy server) + * (but expect up to 3 seconds extra time for a busy server) */ start = timeval_current(); end = timeval_add(&start, 5 * sec, 0);