diff options
| author | tb <> | 2020-09-25 10:50:26 +0000 |
|---|---|---|
| committer | tb <> | 2020-09-25 10:50:26 +0000 |
| commit | b0df497f3e068a862fde134eaf345ace1b76bb36 (patch) | |
| tree | 23ed5836ecc323275bf3f21e749de65c79ae3401 /src/lib/libcrypto/ui/ui_lib.c | |
| parent | e7ab003bf6d776e3b7e60d930414a50a6375989b (diff) | |
| download | openbsd-b0df497f3e068a862fde134eaf345ace1b76bb36.tar.gz openbsd-b0df497f3e068a862fde134eaf345ace1b76bb36.tar.bz2 openbsd-b0df497f3e068a862fde134eaf345ace1b76bb36.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/lib/libcrypto/ui/ui_lib.c')
| -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 | } |
