about summary refs log tree commit diff
path: root/tls_util.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-17 15:06:51 -0400
committerJune McEnroe <june@causal.agency>2021-09-17 15:06:51 -0400
commitfd56a8d74b9c1b9f7005fbc003d98f1253cd5eee (patch)
tree7314e2f05490f73966fdc6b0b4d1011fed1526a9 /tls_util.c
parentImport LibreSSL 3.3.4 (diff)
downloadlibretls-fd56a8d74b9c1b9f7005fbc003d98f1253cd5eee.tar.gz
libretls-fd56a8d74b9c1b9f7005fbc003d98f1253cd5eee.zip
Import LibreSSL 3.4.0
Diffstat (limited to 'tls_util.c')
-rw-r--r--tls_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tls_util.c b/tls_util.c
index b144fb1..d8103a5 100644
--- a/tls_util.c
+++ b/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;