| 136 | } |
| 137 | |
| 138 | void |
| 139 | engine_load_async_int(void) |
| 140 | { |
| 141 | ENGINE *toadd = engine_async(); |
| 142 | if (!toadd) |
| 143 | return; |
| 144 | ENGINE_add(toadd); |
| 145 | ENGINE_free(toadd); |
| 146 | ERR_clear_error(); |
| 147 | } |
| 148 | |
| 149 | static int |
| 150 | engine_async_init(ENGINE *e) |
nothing calls this directly
no test coverage detected