mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

lutoff
16.11.2008 1a8ab4ffedb24a25915f4e73e0c36d4b0861a169
opendj-sdk/opends/src/server/org/opends/server/tools/BackUpDB.java
@@ -1096,17 +1096,19 @@
    // Print a final completed message, indicating whether there were any errors
    // in the process.
    int ret = 0;
    if (errorsEncountered)
    {
      Message message = NOTE_BACKUPDB_COMPLETED_WITH_ERRORS.get();
      logError(message);
      ret = 1;
    }
    else
    {
      Message message = NOTE_BACKUPDB_COMPLETED_SUCCESSFULLY.get();
      logError(message);
    }
    return 0;
    return ret;
  }
}