aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/store
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-20 08:50:18 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-20 08:50:18 +0000
commit9acef3bbd73090731487ea0011db17f3982779d5 (patch)
tree9c31f033a129c1947aef61a18132b51652a8f67a /crypto/store
parent164bc7dae8277221564a4f0161eb86e736541220 (diff)
downloadopenssl-9acef3bbd73090731487ea0011db17f3982779d5.tar.gz
Misspelled functions.
Diffstat (limited to 'crypto/store')
-rw-r--r--crypto/store/str_meth.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/store/str_meth.c b/crypto/store/str_meth.c
index ad6708a12f..e1c39bf06a 100644
--- a/crypto/store/str_meth.c
+++ b/crypto/store/str_meth.c
@@ -129,19 +129,19 @@ int STORE_method_set_list_end_function(STORE_METHOD *sm, STORE_END_OBJECT_FUNC_P
return 1;
}
-int STORE_method_set_update_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR update_f)
+int STORE_method_set_update_store_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR update_f)
{
sm->update_store = update_f;
return 1;
}
-int STORE_method_set_lock_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR lock_f)
+int STORE_method_set_lock_store_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR lock_f)
{
sm->lock_store = lock_f;
return 1;
}
-int STORE_method_set_unlock_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR unlock_f)
+int STORE_method_set_unlock_store_function(STORE_METHOD *sm, STORE_GENERIC_FUNC_PTR unlock_f)
{
sm->unlock_store = unlock_f;
return 1;
@@ -193,17 +193,17 @@ STORE_END_OBJECT_FUNC_PTR STORE_method_get_list_end_function(STORE_METHOD *sm)
return sm->list_object_end;
}
-STORE_GENERIC_FUNC_PTR STORE_method_get_update_function(STORE_METHOD *sm)
+STORE_GENERIC_FUNC_PTR STORE_method_get_update_store_function(STORE_METHOD *sm)
{
return sm->update_store;
}
-STORE_GENERIC_FUNC_PTR STORE_method_get_lock_function(STORE_METHOD *sm)
+STORE_GENERIC_FUNC_PTR STORE_method_get_lock_store_function(STORE_METHOD *sm)
{
return sm->lock_store;
}
-STORE_GENERIC_FUNC_PTR STORE_method_get_unlock_function(STORE_METHOD *sm)
+STORE_GENERIC_FUNC_PTR STORE_method_get_unlock_store_function(STORE_METHOD *sm)
{
return sm->unlock_store;
}