summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_dlfcn.c
diff options
context:
space:
mode:
authorJanpopan <janpopan@gmx.net>2014-05-04 18:13:43 +0200
committerMatt Caswell <matt@openssl.org>2014-05-19 22:10:14 +0100
commitff626ba5f43087f1428536111127590d96bb1097 (patch)
treed685bdbd5aae67393c8a23103e9d4f0ae2a903f1 /crypto/dso/dso_dlfcn.c
parent814972e1ab2d5fbfefeb35e511e81263cb42b304 (diff)
Fix a wrong parameter count ERR_add_error_data
Diffstat (limited to 'crypto/dso/dso_dlfcn.c')
-rw-r--r--crypto/dso/dso_dlfcn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c
index 5f2254806c..4a56aace0e 100644
--- a/crypto/dso/dso_dlfcn.c
+++ b/crypto/dso/dso_dlfcn.c
@@ -464,7 +464,7 @@ static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
return len;
}
- ERR_add_error_data(4, "dlfcn_pathbyaddr(): ", dlerror());
+ ERR_add_error_data(2, "dlfcn_pathbyaddr(): ", dlerror());
#endif
return -1;
}