projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
182f1ad
)
* crypto/ui/ui_lib.c: misplaced brace in switch statement.
author
Richard Levitte
<richard@levitte.org>
Sun, 13 Jul 2014 17:11:29 +0000
(19:11 +0200)
committer
Richard Levitte
<richard@levitte.org>
Sun, 13 Jul 2014 17:16:06 +0000
(19:16 +0200)
Detected by dcruette@qualitesys.com
(cherry picked from commit
8b5dd340919e511137696792279f595a70ae2762
)
crypto/ui/ui_lib.c
patch
|
blob
|
history
diff --git
a/crypto/ui/ui_lib.c
b/crypto/ui/ui_lib.c
index a8abc270642a92556ec8e4061d1275bc6a6887c1..167da002d24c7197b85e0bef250cf84b98ec973a 100644
(file)
--- 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;
}