]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
demos/guide/tls-client-block.c Spelling correction
authorBenson Muite <benson_muite@emailplus.org>
Tue, 13 May 2025 15:52:22 +0000 (18:52 +0300)
committerTomas Mraz <tomas@openssl.org>
Fri, 16 May 2025 10:17:00 +0000 (12:17 +0200)
Fix spelling error in one word.

CLA: trivial

Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/27611)

demos/guide/tls-client-block.c

index c6ba5850f7ff983310fe139b5b6403c4497bdeaa..82d3c37bb194217d314bcbc6cd044c15b3a01a6e 100644 (file)
@@ -174,7 +174,7 @@ int main(int argc, char *argv[])
      */
     bio = create_socket_bio(hostname, port, ipv6 ? AF_INET6 : AF_INET);
     if (bio == NULL) {
-        printf("Failed to crete the BIO\n");
+        printf("Failed to create the BIO\n");
         goto end;
     }
     SSL_set_bio(ssl, bio, bio);