From b9e6391582c1a2c8ff6ebc96d7a2abb7483def2a Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Wed, 19 Apr 2000 21:45:17 +0000 Subject: 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. --- crypto/dso/dso_null.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto/dso/dso_null.c') 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 */ }; -- cgit v1.2.3