From 1d8a94fb7d9bbc5f381b55252461772ea0b2754f Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Thu, 17 Nov 2016 21:08:49 +0100 Subject: [PATCH] Shift inside of switch back one level (code style change, as requested by Rich Salz) Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1945) --- apps/s_client.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/s_client.c b/apps/s_client.c index 01e285abd3..0b6a600bb8 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -1877,12 +1877,12 @@ int s_client_main(int argc, char **argv) } while (mbuf_len > 3 && mbuf[3] == '-'); switch ((PROTOCOL_CHOICE) starttls_proto) { - case PROTO_LMTP: - BIO_printf(fbio, "LHLO %s\r\n", ehlo); - break; - case PROTO_SMTP: - BIO_printf(fbio, "EHLO %s\r\n", ehlo); - break; + case PROTO_LMTP: + BIO_printf(fbio, "LHLO %s\r\n", ehlo); + break; + case PROTO_SMTP: + BIO_printf(fbio, "EHLO %s\r\n", ehlo); + break; } (void)BIO_flush(fbio); /* -- 2.25.1