From 76873cf7ce1d9160d018688cbe806ad7e67bbd1d Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 24 Jan 2008 09:02:14 +0000
Subject: [PATCH] There was a flag day when the new security framework was added in build 1.0.0 build 6. The following changes address the issue. The main thing that has been updated are the changes at the end of VersionCompatibilityIssue. The problem is that the code relied only on the fact that a flag day was known (we register the flag days). However it can happen (as it is the case) that a flag day is registered in the code way after the changes occurred. So when we registered a flag day, systematically we could not upgrade from previous builds.
---
opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java b/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
index 1b4b777..b5fa7af 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/BuildInformation.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2006-2007 Sun Microsystems, Inc.
+ * Portions Copyright 2006-2008 Sun Microsystems, Inc.
*/
package org.opends.quicksetup;
@@ -291,7 +291,7 @@
try {
ids.add(Integer.parseInt(s));
} catch (NumberFormatException nfe) {
- LOG.log(Level.INFO, "invalid upgrade incompatability ID " + s);
+ LOG.log(Level.INFO, "invalid upgrade incompatibility ID " + s);
}
}
}
--
Gitblit v1.10.0