diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-03-10 21:34:48 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-04-28 20:22:26 +0200 |
commit | 8483a003bfca5fac61cda3daea4db2ca20d10ef2 (patch) | |
tree | ccf88bc67f50501f5ce64e6ba15e10f8cd798a76 /crypto/bio/b_addr.c | |
parent | Add getters for X509_STORE and X509_OBJECT members (diff) | |
download | openssl-8483a003bfca5fac61cda3daea4db2ca20d10ef2.tar.xz openssl-8483a003bfca5fac61cda3daea4db2ca20d10ef2.zip |
various spelling fixes
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/952)
Diffstat (limited to 'crypto/bio/b_addr.c')
-rw-r--r-- | crypto/bio/b_addr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bio/b_addr.c b/crypto/bio/b_addr.c index eed40bf8b5..bfc745b769 100644 --- a/crypto/bio/b_addr.c +++ b/crypto/bio/b_addr.c @@ -583,7 +583,7 @@ int BIO_parse_hostserv(const char *hostserv, char **host, char **service, * family, such as AF_UNIX * * the return value is 1 on success, or 0 on failure, which - * only happens if a memory allocation error occured. + * only happens if a memory allocation error occurred. */ static int addrinfo_wrap(int family, int socktype, const void *where, size_t wherelen, @@ -749,7 +749,7 @@ int BIO_lookup(const char *host, const char *service, #endif struct servent *se; - /* Apprently, on WIN64, s_proto and s_port have traded places... */ + /* Apparently, on WIN64, s_proto and s_port have traded places... */ #ifdef _WIN64 struct servent se_fallback = { NULL, NULL, NULL, 0 }; #else |