diff options
author | tb <> | 2021-08-16 13:54:38 +0000 |
---|---|---|
committer | tb <> | 2021-08-16 13:54:38 +0000 |
commit | d43dfde099f95029309eec46e9649dd7f61bf5d2 (patch) | |
tree | 0b9b176a0f7cc2285e50ec404130232ab8ebb75d | |
parent | 858613c64a290faa19b5722b61dbee318fe8e539 (diff) | |
download | openbsd-d43dfde099f95029309eec46e9649dd7f61bf5d2.tar.gz openbsd-d43dfde099f95029309eec46e9649dd7f61bf5d2.tar.bz2 openbsd-d43dfde099f95029309eec46e9649dd7f61bf5d2.zip |
typo in comment
-rw-r--r-- | src/lib/libtls/tls_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libtls/tls_util.c b/src/lib/libtls/tls_util.c index b144fb1eae..d8103a506c 100644 --- a/src/lib/libtls/tls_util.c +++ b/src/lib/libtls/tls_util.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls_util.c,v 1.14 2019/04/13 18:47:58 tb Exp $ */ | 1 | /* $OpenBSD: tls_util.c,v 1.15 2021/08/16 13:54:38 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> | 4 | * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> |
@@ -92,7 +92,7 @@ tls_host_port(const char *hostport, char **host, char **port) | |||
92 | *p++ = '\0'; | 92 | *p++ = '\0'; |
93 | } | 93 | } |
94 | 94 | ||
95 | /* Find the port seperator. */ | 95 | /* Find the port separator. */ |
96 | if ((p = strchr(p, ':')) == NULL) | 96 | if ((p = strchr(p, ':')) == NULL) |
97 | goto done; | 97 | goto done; |
98 | 98 | ||