summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_null.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2000-04-19 21:45:17 +0000
committerGeoff Thorpe <geoff@openssl.org>2000-04-19 21:45:17 +0000
commitb9e6391582c1a2c8ff6ebc96d7a2abb7483def2a (patch)
tree9255d75e5070366a465d52bed9c3a473446b10cd /crypto/dso/dso_null.c
parent2c8c4ce2e0e4c3ccc7f43993e0fed1542e20e11f (diff)
This change facilitates name translation for shared libraries. The
technique used is far from perfect and alternatives are welcome. Basically if the translation flag is set, the string is not too long, and there appears to be no path information in the string, then it is converted to whatever the standard should be for the DSO_METHOD in question, eg; blah --> libblah.so on *nix, and blah --> blah.dll on win32. This change also introduces the DSO_ctrl() function that is used by the name translation stuff.
Diffstat (limited to 'crypto/dso/dso_null.c')
-rw-r--r--crypto/dso/dso_null.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c
index ee6a31e32d..79e6eddca2 100644
--- a/crypto/dso/dso_null.c
+++ b/crypto/dso/dso_null.c
@@ -72,6 +72,7 @@ static DSO_METHOD dso_meth_null = {
#if 0
NULL, /* unbind */
#endif
+ NULL, /* ctrl */
NULL, /* init */
NULL /* finish */
};