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)));
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)));