summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <richard@levitte.org>2014-07-13 19:11:29 +0200
committerJanusz Kozerski <j.kozerski@samsung.com>2014-10-20 15:25:30 +0200
commit8e08a29cfbbe6a6b335872ba84083a3774720efd (patch)
tree9999f45c45a2b78e8696dddc6629cfcc13888849 /crypto
parent7634f07fc90c4248f799c17b80a565fc5e5d413b (diff)
downloadopenssl-8e08a29cfbbe6a6b335872ba84083a3774720efd.tar.gz
openssl-8e08a29cfbbe6a6b335872ba84083a3774720efd.tar.bz2
openssl-8e08a29cfbbe6a6b335872ba84083a3774720efd.zip
* crypto/ui/ui_lib.c: misplaced brace in switch statement.
Detected by dcruette@qualitesys.com (cherry picked from commit 8b5dd340919e511137696792279f595a70ae2762)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/ui/ui_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c
index a8abc27..167da00 100644
--- a/crypto/ui/ui_lib.c
+++ b/crypto/ui/ui_lib.c
@@ -916,9 +916,9 @@ int UI_set_result(UI *ui, UI_STRING *uis, const char *result)
break;
}
}
+ }
default:
break;
}
- }
return 0;
}