On 02-04-25 00:10:07 CEST, Eugene Reid wrote: > This may be better asked on the devel list but I thought I'd try my luck here first. > I'm attempting to track down an error I'm receiving with the openca-sv module. I'm >installing from openca-0.9-SNAP-20020423 with openssl-0.9.7-stable-SNAP-20020420. >All other modules besides openca-sv install fine. > > The error I'm getting from openca-sv is > > callback.c: In function `cb': > callback.c:193: `X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION' undeclared (first > use in this function) > > When hunting through the list of header files on my machine I was unable to locate >any reference to X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION and was hoping somebody >could point me in the right direction to finding the missing header file.
looks like you picked yours from the wrong line of snaps: ...> find openssl-SNAP-20020416/ -type f -print0 | xargs -0 grep X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION /dev/null openssl-SNAP-20020416/CHANGES: handling the new error X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION or openssl-SNAP-20020416/apps/verify.c: if (ctx->error == X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION) ok=1; openssl-SNAP-20020416/crypto/x509/x509_txt.c: case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION: openssl-SNAP-20020416/crypto/x509/x509_vfy.c: ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION; openssl-SNAP-20020416/crypto/x509/x509_vfy.h:#define X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION 34 Exit 123 ...> ^16^23 find openssl-SNAP-20020423/ -type f -print0 | xargs -0 grep X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION /dev/null openssl-SNAP-20020423/CHANGES: handling the new error X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION or openssl-SNAP-20020423/apps/verify.c: if (ctx->error == X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION) ok=1; openssl-SNAP-20020423/crypto/x509/x509_txt.c: case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION: openssl-SNAP-20020423/crypto/x509/x509_vfy.c: ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION; openssl-SNAP-20020423/crypto/x509/x509_vfy.h:#define X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION 34 ...> rj _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
