diff options
author | 2018-02-11 20:03:10 +0000 | |
---|---|---|
committer | 2018-02-11 20:03:10 +0000 | |
commit | 5651377cbf250c24673c7af42c6bb9afeddfefa5 (patch) | |
tree | 75d3b68fa8ac2d3ad1704f3679b17ff88d554b45 | |
parent | fix madvise(2) flags matching; ok deraadt@ tom@ (diff) | |
download | wireguard-openbsd-5651377cbf250c24673c7af42c6bb9afeddfefa5.tar.xz wireguard-openbsd-5651377cbf250c24673c7af42c6bb9afeddfefa5.zip |
typo in output string; from edgar pettijohn
-rw-r--r-- | usr.bin/openssl/s_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/s_client.c b/usr.bin/openssl/s_client.c index cedc495218b..b66997ee504 100644 --- a/usr.bin/openssl/s_client.c +++ b/usr.bin/openssl/s_client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_client.c,v 1.35 2018/02/07 05:47:55 jsing Exp $ */ +/* $OpenBSD: s_client.c,v 1.36 2018/02/11 20:03:10 jmc Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -859,7 +859,7 @@ re_start: BIO_free(fbio); if (!foundit) BIO_printf(bio_err, - "didn't found starttls in server response," + "didn't find starttls in server response," " try anyway...\n"); BIO_printf(sbio, "STARTTLS\r\n"); BIO_read(sbio, sbuf, BUFSIZZ); |