[java-identity-provider] branch main updated: Report keyIds as 0x..., not 0X...
Rod Widdowson
rdw at steadingsoftware.com
Wed Oct 6 10:33:35 UTC 2021
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=e5a925a0268ac5d2a2f582f99119153d5b0d7cee
The following commit(s) were added to refs/heads/main by this push:
new e5a925a02 Report keyIds as 0x..., not 0X...
e5a925a02 is described below
commit e5a925a0268ac5d2a2f582f99119153d5b0d7cee
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Oct 6 11:32:52 2021 +0100
Report keyIds as 0x..., not 0X...
It makes the 'gpg' verb happier.
---
.../main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
index 6aba2cba3..8603e6574 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/TrustStore.java
@@ -384,7 +384,7 @@ import net.shibboleth.utilities.java.support.component.ComponentSupport;
throw new IOException("Provided file was not a signature");
}
}
- keyId = String.format("0X%X", signature.getKeyID());
+ keyId = String.format("0x%X", signature.getKeyID());
}
/**
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list