summaryrefslogtreecommitdiff
path: root/dso/aix
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2002-12-29 22:28:11 +0000
committerRyan Bloom <rbb@apache.org>2002-12-29 22:28:11 +0000
commit72ea5dd4011495652b80d6eef8e9959b227703af (patch)
tree6407507b839686103e6973eee313dbfd5be94563 /dso/aix
parent3285e905bb7473c1b52b12772c54e5b40f6c8db0 (diff)
downloadapr-72ea5dd4011495652b80d6eef8e9959b227703af.tar.gz
standardize on a couple of easy to test for error codes for DSO errors.
This doesn't work fully on Windows yet, that is the next commit. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64233 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/aix')
-rw-r--r--dso/aix/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/aix/dso.c b/dso/aix/dso.c
index 1870a42d7..0c0d6be95 100644
--- a/dso/aix/dso.c
+++ b/dso/aix/dso.c
@@ -197,7 +197,7 @@ APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym,
if (retval == NULL) {
handle->errormsg = dlerror();
- return APR_EINIT;
+ return APR_ESYMNOTFOUND;
}
*ressym = retval;