* crypto/ui/ui_lib.c: misplaced brace in switch statement.
authorRichard Levitte <richard@levitte.org>
Sun, 13 Jul 2014 17:11:29 +0000 (19:11 +0200)
committerRichard Levitte <richard@levitte.org>
Sun, 13 Jul 2014 17:13:38 +0000 (19:13 +0200)
  Detected by dcruette@qualitesys.com

(cherry picked from commit 8b5dd340919e511137696792279f595a70ae2762)

crypto/ui/ui_lib.c

index a8abc270642a92556ec8e4061d1275bc6a6887c1..167da002d24c7197b85e0bef250cf84b98ec973a 100644 (file)
@@ -916,9 +916,9 @@ int UI_set_result(UI *ui, UI_STRING *uis, const char *result)
                                break;
                                }
                        }
+               }
        default:
                break;
                }
-               }
        return 0;
        }