diff options
author | tb <> | 2020-09-25 10:50:26 +0000 |
---|---|---|
committer | tb <> | 2020-09-25 10:50:26 +0000 |
commit | 8e9a70b045dcd6535fbf6face9bb2d307f5d3be9 (patch) | |
tree | 23ed5836ecc323275bf3f21e749de65c79ae3401 /src | |
parent | f26f6ab6f9af4ae819351d6220b9ae0f1054758f (diff) | |
download | openbsd-8e9a70b045dcd6535fbf6face9bb2d307f5d3be9.tar.gz openbsd-8e9a70b045dcd6535fbf6face9bb2d307f5d3be9.tar.bz2 openbsd-8e9a70b045dcd6535fbf6face9bb2d307f5d3be9.zip |
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 'src')
-rw-r--r-- | src/lib/libcrypto/ui/ui_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 @@ | |||
1 | /* $OpenBSD: ui_lib.c,v 1.39 2020/09/25 10:46:12 tb Exp $ */ | 1 | /* $OpenBSD: ui_lib.c,v 1.40 2020/09/25 10:50:26 tb Exp $ */ |
2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
3 | * project 2001. | 3 | * project 2001. |
4 | */ | 4 | */ |
@@ -830,9 +830,9 @@ UI_set_result(UI *ui, UI_STRING *uis, const char *result) | |||
830 | break; | 830 | break; |
831 | } | 831 | } |
832 | } | 832 | } |
833 | default: | ||
834 | break; | ||
835 | } | 833 | } |
834 | default: | ||
835 | break; | ||
836 | } | 836 | } |
837 | return 0; | 837 | return 0; |
838 | } | 838 | } |