fix "missing initializer" warning
authorNils Larsch <nils@openssl.org>
Sat, 11 Mar 2006 11:58:47 +0000 (11:58 +0000)
committerNils Larsch <nils@openssl.org>
Sat, 11 Mar 2006 11:58:47 +0000 (11:58 +0000)
crypto/dso/dso_null.c

index a213f930888fbc19643e8fef28cb9351cc047b6c..49d842d1f567fd79124074a9f4c69871f79039ba 100644 (file)
@@ -79,7 +79,8 @@ static DSO_METHOD dso_meth_null = {
        NULL, /* dso_merger */
        NULL, /* init */
        NULL, /* finish */
-       NULL  /* pathbyaddr */
+       NULL, /* pathbyaddr */
+       NULL  /* globallookup */
        };
 
 DSO_METHOD *DSO_METHOD_null(void)