Fix race condition when CRL checking is enabled.

This commit is contained in:
Dr. Stephen Henson
2004-10-04 16:27:36 +00:00
parent 14e21742d5
commit 8de8bcbe2c
8 changed files with 93 additions and 31 deletions

View File

@@ -331,3 +331,10 @@ void sk_sort(STACK *st)
st->sorted=1;
}
}
int sk_is_sorted(const STACK *st)
{
if (st)
return 1;
return st->sorted;
}