summaryrefslogtreecommitdiffstats
path: root/apps/s_socket.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-02-24 10:59:14 -0500
committerRich Salz <rsalz@openssl.org>2016-02-24 14:23:21 -0500
commitf7c798e34b50d3cc09629537153bb60ae9ea85fc (patch)
tree0afe7605d82f16633e4ae99d84af5e2232b6931c /apps/s_socket.c
parent2cf28d6127fdfbfb43d21b87514f08d925ca0c3a (diff)
Fix typo, reformat comment.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'apps/s_socket.c')
-rw-r--r--apps/s_socket.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/s_socket.c b/apps/s_socket.c
index 5d66ab993a..958dd78850 100644
--- a/apps/s_socket.c
+++ b/apps/s_socket.c
@@ -167,9 +167,9 @@ int init_client(int *sock, const char *host, const char *port,
ret = 0;
for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) {
- /* Admitedly, these checks are quite paranoid, we should
- not get anything in the BIO_ADDRINFO chain that we haven't
- asked for */
+ /* Admittedly, these checks are quite paranoid, we should not get
+ * anything in the BIO_ADDRINFO chain that we haven't
+ * asked for. */
OPENSSL_assert((family == AF_UNSPEC || family == BIO_ADDRINFO_family(res))
&& (type == 0 || type == BIO_ADDRINFO_socktype(res)));
@@ -238,9 +238,8 @@ int do_server(int *accept_sock, const char *host, const char *port,
return 0;
}
- /* Admitedly, these checks are quite paranoid, we should
- not get anything in the BIO_ADDRINFO chain that we haven't
- asked for */
+ /* Admittedly, these checks are quite paranoid, we should not get
+ * anything in the BIO_ADDRINFO chain that we haven't asked for */
OPENSSL_assert((family == AF_UNSPEC || family == BIO_ADDRINFO_family(res))
&& (type == 0 || type == BIO_ADDRINFO_socktype(res)));