summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso.h
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-11-22 08:48:09 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-11-22 08:48:09 +0000
commit9163b8fb238ece12091753c137db37b6489719bb (patch)
tree511dff750886c999fdc66643fc683b5316bcbe35 /crypto/dso/dso.h
parenta542db90c61ad90707c1cb44b350bc3a14fc0975 (diff)
'flags' should only be set inside DSO_load() if constructing a new DSO
object - otherwise we overwrite any flags that had been previously set in the DSO before calling DSO_load().
Diffstat (limited to 'crypto/dso/dso.h')
-rw-r--r--crypto/dso/dso.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/dso/dso.h b/crypto/dso/dso.h
index 2855cf7761..a1678454a5 100644
--- a/crypto/dso/dso.h
+++ b/crypto/dso/dso.h
@@ -227,8 +227,7 @@ DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth);
* for the first and third parameters. Use DSO_up and DSO_free for
* subsequent reference count handling. Any flags passed in will be set
* in the constructed DSO after its init() function but before the
- * load operation. This will be done with;
- * DSO_ctrl(dso, DSO_CTRL_SET_FLAGS, flags, NULL); */
+ * load operation. If 'dso' is non-NULL, 'flags' is ignored. */
DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags);
/* This function binds to a variable inside a shared library. */