sk_value was also suffering from de-const-ification.

Also, add in a couple of missing declarations in pkcs7 code.
This commit is contained in:
Geoff Thorpe
2000-05-31 17:35:11 +00:00
parent b108611622
commit e20d7d7167
3 changed files with 4 additions and 2 deletions

View File

@@ -285,7 +285,7 @@ int sk_num(const STACK *st)
return st->num;
}
char *sk_value(STACK *st, int i)
char *sk_value(const STACK *st, int i)
{
if(st == NULL) return NULL;
return st->data[i];