Randy wrote:
Unfortunately that is how I orginally had it but that generates the same
error.
                SSL *ssl_x;

Generates
UX:acomp: ERROR: "curl_dip.c", line 271: undefined symbol: ssl_x
UX:acomp: WARNING: "curl_dip.c", line 457: assignment type mismatch
*** Error code 1 (bu21)

Going back to your original error. Its complaining about "undefined symbol" so something at like 271 is using "ssl_x". But the code snippet you quoted does not *use* "ssl_x" it only declares it. A declaration can't cause an "undefined symbol" error.

I'm thinking this is a simple C programming error.

Check the scope of the variable "ssl_x" is correct in relation to the code on line 271. Try moving it out of the function scope and into the file scope. Otherwise maybe a C programming mailing list can offer you more help.


Darryl
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to