summaryrefslogtreecommitdiffstats
path: root/base/server/cmscore
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-04-15 02:30:00 +0200
committerEndi S. Dewata <edewata@redhat.com>2016-04-15 20:03:36 +0200
commitd3bbfe07b1cb2d65a7af6530ea01374b20a761e4 (patch)
tree1fd572a9a76b5bfc4610037b1c45ef5d8a63e4f4 /base/server/cmscore
parent08f032de4090467ac4096f970609e19834b997ac (diff)
downloadpki-d3bbfe07b1cb2d65a7af6530ea01374b20a761e4.tar.gz
pki-d3bbfe07b1cb2d65a7af6530ea01374b20a761e4.tar.xz
pki-d3bbfe07b1cb2d65a7af6530ea01374b20a761e4.zip
Updated pki pkcs12-export CLI.
For consistency the pki pkcs12-export has been modified to overwrite the PKCS #12 output file by default. A new option has been added to append the exported certificates and keys into the output file if the file already exists. The same option has been added to the The pki-server instance-cert-export and subsystem-cert-export commands. https://fedorahosted.org/pki/ticket/1736
Diffstat (limited to 'base/server/cmscore')
-rw-r--r--base/server/cmscore/src/com/netscape/cmscore/base/PropConfigStore.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/server/cmscore/src/com/netscape/cmscore/base/PropConfigStore.java b/base/server/cmscore/src/com/netscape/cmscore/base/PropConfigStore.java
index eb3f6c312..cc16e247d 100644
--- a/base/server/cmscore/src/com/netscape/cmscore/base/PropConfigStore.java
+++ b/base/server/cmscore/src/com/netscape/cmscore/base/PropConfigStore.java
@@ -255,7 +255,7 @@ public class PropConfigStore implements IConfigStore, Cloneable {
if (str == null) {
CMS.traceHashKey(mDebugType, getFullName(name), "<notpresent>");
- throw new EPropertyNotFound(CMS.getUserMessage("CMS_BASE_GET_PROPERTY_FAILED", getName() + "." + name));
+ throw new EPropertyNotFound(CMS.getUserMessage("CMS_BASE_GET_PROPERTY_FAILED", getFullName(name)));
}
// should we check for empty string ?
// if (str.length() == 0) {