diff options
author | June McEnroe <june@causal.agency> | 2021-10-14 21:28:19 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-10-14 21:28:19 -0400 |
commit | 9993c88024f45401d84bfa7267620aa97328c1d0 (patch) | |
tree | 34097d0fd1f5d289f9fbc812a3cb5e3dc5afbc83 /tls_util.c | |
parent | Merge LibreSSL 3.3.4 (diff) | |
parent | Import LibreSSL 3.4.1 (diff) | |
download | libretls-9993c88024f45401d84bfa7267620aa97328c1d0.tar.gz libretls-9993c88024f45401d84bfa7267620aa97328c1d0.zip |
Merge LibreSSL 3.4.1 3.4.1
Diffstat (limited to '')
-rw-r--r-- | tls_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tls_util.c b/tls_util.c index 7511792..782d6fc 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> @@ -93,7 +93,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; |