projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd346d3
)
fix "missing initializer" warning
author
Nils Larsch
<nils@openssl.org>
Sat, 11 Mar 2006 11:58:47 +0000
(11:58 +0000)
committer
Nils Larsch
<nils@openssl.org>
Sat, 11 Mar 2006 11:58:47 +0000
(11:58 +0000)
crypto/dso/dso_null.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_null.c
b/crypto/dso/dso_null.c
index a213f930888fbc19643e8fef28cb9351cc047b6c..49d842d1f567fd79124074a9f4c69871f79039ba 100644
(file)
--- a/
crypto/dso/dso_null.c
+++ b/
crypto/dso/dso_null.c
@@
-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)