aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-09-04 20:40:41 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-09-04 20:40:41 +0000
commitd9ff8890736369d0f549e52fa6adcd4d24ace588 (patch)
tree19c17a7fa00bef86674a97330362c5af319e83ec /crypto
parente4decc418a335f6b5e86c4c98f5399ca79d8ba53 (diff)
downloadopenssl-d9ff8890736369d0f549e52fa6adcd4d24ace588.tar.gz
Add a "_up" -> "_up_ref" change to libeay.num that was missing from the
recent changes. Also, do the same change to the DSO_up() function.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/dso/dso.h4
-rw-r--r--crypto/dso/dso_err.c2
-rw-r--r--crypto/dso/dso_lib.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/crypto/dso/dso.h b/crypto/dso/dso.h
index 8c495b1b24..9ceeb2beb4 100644
--- a/crypto/dso/dso.h
+++ b/crypto/dso/dso.h
@@ -187,7 +187,7 @@ DSO * DSO_new(void);
DSO * DSO_new_method(DSO_METHOD *method);
int DSO_free(DSO *dso);
int DSO_flags(DSO *dso);
-int DSO_up(DSO *dso);
+int DSO_up_ref(DSO *dso);
long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg);
/* This function sets the DSO's name_converter callback. If it is non-NULL,
@@ -293,7 +293,7 @@ void ERR_load_DSO_strings(void);
#define DSO_F_DSO_NEW_METHOD 113
#define DSO_F_DSO_SET_FILENAME 129
#define DSO_F_DSO_SET_NAME_CONVERTER 122
-#define DSO_F_DSO_UP 114
+#define DSO_F_DSO_UP_REF 114
#define DSO_F_VMS_BIND_VAR 115
#define DSO_F_VMS_LOAD 116
#define DSO_F_VMS_UNLOAD 117
diff --git a/crypto/dso/dso_err.c b/crypto/dso/dso_err.c
index b6142404d5..cf452de1aa 100644
--- a/crypto/dso/dso_err.c
+++ b/crypto/dso/dso_err.c
@@ -87,7 +87,7 @@ static ERR_STRING_DATA DSO_str_functs[]=
{ERR_PACK(0,DSO_F_DSO_NEW_METHOD,0), "DSO_new_method"},
{ERR_PACK(0,DSO_F_DSO_SET_FILENAME,0), "DSO_set_filename"},
{ERR_PACK(0,DSO_F_DSO_SET_NAME_CONVERTER,0), "DSO_set_name_converter"},
-{ERR_PACK(0,DSO_F_DSO_UP,0), "DSO_up"},
+{ERR_PACK(0,DSO_F_DSO_UP_REF,0), "DSO_up_ref"},
{ERR_PACK(0,DSO_F_VMS_BIND_VAR,0), "VMS_BIND_VAR"},
{ERR_PACK(0,DSO_F_VMS_LOAD,0), "VMS_LOAD"},
{ERR_PACK(0,DSO_F_VMS_UNLOAD,0), "VMS_UNLOAD"},
diff --git a/crypto/dso/dso_lib.c b/crypto/dso/dso_lib.c
index ef39a528c7..ba1b196809 100644
--- a/crypto/dso/dso_lib.c
+++ b/crypto/dso/dso_lib.c
@@ -179,11 +179,11 @@ int DSO_flags(DSO *dso)
}
-int DSO_up(DSO *dso)
+int DSO_up_ref(DSO *dso)
{
if (dso == NULL)
{
- DSOerr(DSO_F_DSO_UP,ERR_R_PASSED_NULL_PARAMETER);
+ DSOerr(DSO_F_DSO_UP_REF,ERR_R_PASSED_NULL_PARAMETER);
return(0);
}