From 8e9a70b045dcd6535fbf6face9bb2d307f5d3be9 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 25 Sep 2020 10:50:26 +0000 Subject: The default branch of a switch somehow got moved inside of a pointless local scope of a case branch. Move it into the proper location. No binary change on amd64. "sure" jsing --- src/lib/libcrypto/ui/ui_lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/ui/ui_lib.c b/src/lib/libcrypto/ui/ui_lib.c index 36cbba2e63..106a38fa8a 100644 --- a/src/lib/libcrypto/ui/ui_lib.c +++ b/src/lib/libcrypto/ui/ui_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ui_lib.c,v 1.39 2020/09/25 10:46:12 tb Exp $ */ +/* $OpenBSD: ui_lib.c,v 1.40 2020/09/25 10:50:26 tb Exp $ */ /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL * project 2001. */ @@ -830,9 +830,9 @@ UI_set_result(UI *ui, UI_STRING *uis, const char *result) break; } } - default: - break; } + default: + break; } return 0; } -- cgit v1.2.3-55-g6feb