in file /crypto/engine/eng_table.c
on line 137 missing pointer before cleanup!

wrong:
int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB cleanup,
  ENGINE *e, const int *nids, int num_nids, int setdefault)

correct:
int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
  ENGINE *e, const int *nids, int num_nids, int setdefault)

Martin

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to