Commit ac722c9a authored by Richard Levitte's avatar Richard Levitte
Browse files

Small fixups in DSO



- VMS configs had no dso_scheme
- Incorrect return of NULL method.

Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent 7def9fae
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1703,6 +1703,7 @@ sub vc_wince_info {
                                   debug   => "/DEBUG/TRACEBACK",
                                   release => "/NODEBUG/NOTRACEBACK"),
        shared_target    => "vms-shared",
        dso_scheme       => "vms",
        thread_scheme    => "pthreads",

        apps_aux_src     => "vms_decc_init.c",
+1 −1
Original line number Diff line number Diff line
@@ -66,6 +66,6 @@ static DSO_METHOD dso_meth_null = {

DSO_METHOD *DSO_METHOD_openssl(void)
{
    return dso_meth_null();
    return &dso_meth_null;
}
#endif