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:15:27 +0100
commit5d8e9f2ae01f957be1b4e994f5395309c500b296 (patch)
tree149c4d7c21c4c851cce4080f1ed5d1ce1769845d /crypto/dso
parent6c1d36a649f4724bbcc261fdca3f90ae2a9fd563 (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 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;
}