Fix race condition when CRL checking is enabled.

This commit is contained in:
Dr. Stephen Henson
2004-10-04 16:30:12 +00:00
parent 5e2216bfa1
commit 2f605e8d24
8 changed files with 100 additions and 31 deletions

View File

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