From 694ba2715a3d8c483b442eeb16b0d5fe40e0e28e Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 26 Apr 2007 21:51:20 +0000
Subject: [PATCH] fixed serveral message formatting problems in the CLI and GUI

---
 opends/src/quicksetup/org/opends/quicksetup/Launcher.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/Launcher.java b/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
index 5be6d60..7966c54 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Launcher.java
@@ -239,7 +239,8 @@
     if (shouldPrintUsage()) {
       printUsage();
     } else if (isCli()) {
-      System.exit(launchCli(args, createCliApplication()));
+      int exitCode = launchCli(args, createCliApplication());
+      System.exit(exitCode);
     } else {
       willLaunchGui();
       int exitCode = launchGui(args);

--
Gitblit v1.10.0