+* Fri Oct 29 2010 Andrew McNab <Andrew.McNab@cern.ch>
+- Include patch from Daniel Kouril <kouril@ics.muni.cz>
+ to support single-byte certificate serial numbers
+* Fri Oct 29 2010 Andrew McNab <Andrew.McNab@cern.ch>
+- ==== GridSite version 1.5.20 ====
* Thu Sep 16 2010 Andrew McNab <Andrew.McNab@cern.ch>
- Support hashes other than MD5 for VOMS ACs to
address Bug #72185
{
p = &asn1string[taglist[itag].start+taglist[itag].headerlength];
- if (taglist[itag].length == 2)
+ if (taglist[itag].length == 1)
+ acissuerserial = p[0];
+ else if (taglist[itag].length == 2)
acissuerserial = p[1] + p[0] * 0x100;
else if (taglist[itag].length == 3)
acissuerserial = p[2] + p[1] * 0x100 + p[0] * 0x10000;