summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2021-08-16 13:54:39 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2021-08-16 13:54:39 +0000
commit5d6cf71ee476af75c393bedc04157244f8f70004 (patch)
tree236c735d377eb7039066823f3e6071336830d0c0 /lib
parente3d7f5e46c995eebe95159b712d9dd58f9d53682 (diff)
typo in comment
Diffstat (limited to 'lib')
-rw-r--r--lib/libtls/tls_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtls/tls_util.c b/lib/libtls/tls_util.c
index b144fb1eaed..d8103a506cc 100644
--- a/lib/libtls/tls_util.c
+++ b/lib/libtls/tls_util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls_util.c,v 1.14 2019/04/13 18:47:58 tb Exp $ */
+/* $OpenBSD: tls_util.c,v 1.15 2021/08/16 13:54:38 tb Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
@@ -92,7 +92,7 @@ tls_host_port(const char *hostport, char **host, char **port)
*p++ = '\0';
}
- /* Find the port seperator. */
+ /* Find the port separator. */
if ((p = strchr(p, ':')) == NULL)
goto done;