summaryrefslogtreecommitdiffstats
path: root/crypto/dso
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:18:23 +0100
commit30e9cbe7923fa2d68668b595d586b91d798f11e1 (patch)
tree9cd3a3f20ab87212c62a3d24e1ab1477802c2dbe /crypto/dso
parent5b7f4c718f80dce4434c1a8b7652ff4a6cff7fcb (diff)
Fix a wrong parameter count ERR_add_error_data
Diffstat (limited to 'crypto/dso')
-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 c2bc61760b..18c3dfb557 100644
--- a/crypto/dso/dso_dlfcn.c
+++ b/crypto/dso/dso_dlfcn.c
@@ -463,7 +463,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;
}