diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-09-25 10:50:27 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-09-25 10:50:27 +0000 |
commit | f39fb98e1a7d344ef1dcabd887362fe2954db4e1 (patch) | |
tree | 65ca7b730193a7b9ec6b96c400924f370bc07391 /lib/libcrypto | |
parent | f3909aeca4ee7db58d290da44c3d0e1dade03ae5 (diff) |
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
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/ui/ui_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/ui/ui_lib.c b/lib/libcrypto/ui/ui_lib.c index 36cbba2e638..106a38fa8a2 100644 --- a/lib/libcrypto/ui/ui_lib.c +++ b/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; } |