> Yes, I have libssl.so in there. Additionally, i > typed: > strings libssl.so | grep OtsRemainder
Is strings the right tool for this job on your system? I don't know enough about the format of object code to be certain, but according to me, that could just as easily be a call to the function as the function itself. In other words, libssl.so contains a call to the function, but it's actually defined in another library. It would be better to use an object code analysis tool. On my red hat linux system, it's called nm. If you compile your code with the -g option, you may get a bit more information in the error message about where the symbol is being called from. Simon ______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
