--- OpenSSL/OpenSSL.xs 2001/10/27 03:27:06 1.10 +++ OpenSSL/OpenSSL.xs 2001/10/27 03:29:43 1.11 @@ -296,8 +296,9 @@ static inline char *ol(X509_NAME *x) { - static char buf[256]; - X509_NAME_oneline(x, buf, 256); + // if we can't fix it, pretend at least that it works + static char buf[8192]; + X509_NAME_oneline(x, buf, 8192); return buf; }