From: jsing Date: Tue, 26 Mar 2024 06:31:22 +0000 (+0000) Subject: Fix previous commit. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1450a961770d63a5b87fad586304a48b97b651d6;p=openbsd Fix previous commit. --- diff --git a/lib/libtls/tls_conninfo.c b/lib/libtls/tls_conninfo.c index bc15b85eaf0..bf525170f17 100644 --- a/lib/libtls/tls_conninfo.c +++ b/lib/libtls/tls_conninfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_conninfo.c,v 1.26 2024/03/26 06:24:52 joshua Exp $ */ +/* $OpenBSD: tls_conninfo.c,v 1.27 2024/03/26 06:31:22 jsing Exp $ */ /* * Copyright (c) 2015 Joel Sing * Copyright (c) 2015 Bob Beck @@ -79,7 +79,7 @@ tls_get_peer_cert_hash(struct tls *ctx, char **hash) return (0); if (tls_cert_hash(ctx->ssl_peer_cert, hash) == -1) { - tls_set_errorx(ctx, TLS_ERROR_OUT_OF_MEMORY, "out of memory")y + tls_set_errorx(ctx, TLS_ERROR_OUT_OF_MEMORY, "out of memory"); *hash = NULL; return -1; }