DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=30517>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30517

[signjar] : uptodate enhancements





------- Additional Comments From [EMAIL PROTECTED]  2004-11-05 17:08 -------
I don't think the change suggested by Kees Kuip
String entryName = SIG_START + alias.substring(0, 8).toUpperCase() + SIG_END;
is sufficient: The jar file might have been signed with -sigfile in which case
the base name of the SF file could be longer than 8 characters.
You need to check both for
SIG_START + alias.substring(0, 8).toUpperCase() + SIG_END
and 
SIG_START + alias.toUpperCase() + SIG_END;

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to