summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2020-11-05 16:38:09 +0000
committertb <tb@openbsd.org>2020-11-05 16:38:09 +0000
commit962f97caea865b0586f8f2ca665339ca462a62ea (patch)
tree66aa3f7b062537eb618e261b5d31c3a08b48495a
parentHandle DNS answers that are larger than the maximum imsg size (about (diff)
downloadwireguard-openbsd-962f97caea865b0586f8f2ca665339ca462a62ea.tar.xz
wireguard-openbsd-962f97caea865b0586f8f2ca665339ca462a62ea.zip
typo
-rw-r--r--usr.sbin/rpki-client/mft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/mft.c b/usr.sbin/rpki-client/mft.c
index 52e74632722..817f62f5d90 100644
--- a/usr.sbin/rpki-client/mft.c
+++ b/usr.sbin/rpki-client/mft.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mft.c,v 1.17 2020/11/05 15:53:55 tb Exp $ */
+/* $OpenBSD: mft.c,v 1.18 2020/11/05 16:38:09 tb Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -311,7 +311,7 @@ mft_parse_econtent(const unsigned char *d, size_t dsz, struct parse *p)
* Validate that the current date falls into this interval.
* This is required by section 4.4, (3).
* If we're after the given date, then the MFT is stale.
- * This is made super complicated because it usees OpenSSL's
+ * This is made super complicated because it uses OpenSSL's
* ASN1_GENERALIZEDTIME instead of ASN1_TIME, which we could
* compare against the current time trivially.
*/