| 109 | |
| 110 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE |
| 111 | static int |
| 112 | bind_helper(ENGINE *e, const char *id) |
| 113 | { |
| 114 | if (id && (strcmp(id, engine_id) != 0)) |
| 115 | return 0; |
| 116 | if (!bind_async(e)) |
| 117 | return 0; |
| 118 | return 1; |
| 119 | } |
| 120 | |
| 121 | IMPLEMENT_DYNAMIC_CHECK_FN() |
| 122 | IMPLEMENT_DYNAMIC_BIND_FN(bind_helper) |
nothing calls this directly
no test coverage detected