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:
97f4e23
)
* 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:17:21 +0000
(19:17 +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 ac0100808f5d862280017d1eb6b241d3a1979f00..67013f8cddfb6770e1da71f0bace3cc9890f2953 100644
(file)
--- a/
crypto/ui/ui_lib.c
+++ b/
crypto/ui/ui_lib.c
@@
-897,9
+897,9
@@
int UI_set_result(UI *ui, UI_STRING *uis, const char *result)
break;
}
}
+ }
default:
break;
}
- }
return 0;
}