Fix for sk_insert bug: it never worked properly.

Allow explicit tag asn macros to handle indefinite length constructed stuff:
without this certain "certificates" can't be read in.
This commit is contained in:
stephen
1998-12-31 00:59:02 +00:00
parent 88fce97953
commit e9b8eb3155
2 changed files with 17 additions and 1 deletions

View File

@@ -161,7 +161,7 @@ int loc;
f=(char **)st->data;
t=(char **)&(st->data[1]);
for (i=st->num; i>loc; i--)
for (i=st->num; i>=loc; i--)
t[i]=f[i];
#ifdef undef /* no memmove on sunos :-( */