would it be possible to add something like the following
to evp/evp_test.c It is not a replacement for strsep but
a function that seems to work with the few calls in evp_test.c
static char * strsep(char **p,const char *sep) {
char * p1 = *p ;
while (**p != *sep) {
if (**p == '\0') return p1;
(*p)++;
}
**p = '\0'; (*p)++ ;
return p1 ;
}
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]