X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Fdso%2Fdso.h;h=23a35e1354d5644f4a243e885a85f1e320249a46;hb=7bb9d84e35dce137c4479915ab0cbdb10ad0cf1d;hp=839f2e06170882c5dde15a73da1e37ab69e404c0;hpb=5ce278a77bd7d23bcf965cfa37afb7b937c1a17d;p=openssl.git diff --git a/crypto/dso/dso.h b/crypto/dso/dso.h index 839f2e0617..23a35e1354 100644 --- a/crypto/dso/dso.h +++ b/crypto/dso/dso.h @@ -109,14 +109,14 @@ typedef struct dso_st DSO; /* The function prototype used for method functions (or caller-provided * callbacks) that transform filenames. They are passed a DSO structure pointer - * (or NULL if they are to be used independantly of a DSO object) and a + * (or NULL if they are to be used independently of a DSO object) and a * filename to transform. They should either return NULL (if there is an error * condition) or a newly allocated string containing the transformed form that * the caller will need to free with OPENSSL_free() when done. */ typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); /* The function prototype used for method functions (or caller-provided * callbacks) that merge two file specifications. They are passed a - * DSO structure pointer (or NULL if they are to be used independantly of + * DSO structure pointer (or NULL if they are to be used independently of * a DSO object) and two file specifications to merge. They should * either return NULL (if there is an error condition) or a newly allocated * string containing the result of merging that the caller will need @@ -202,7 +202,7 @@ struct dso_st * be used in DSO_load() in place of meth->dso_merger. NB: This * should normally set using DSO_set_merger(). */ DSO_MERGER_FUNC merger; - /* This is populated with (a copy of) the platform-independant + /* This is populated with (a copy of) the platform-independent * filename used for this DSO. */ char *filename; /* This is populated with (a copy of) the translated filename by which @@ -231,7 +231,7 @@ long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg); * replaced. Return value is non-zero for success. */ int DSO_set_name_converter(DSO *dso, DSO_NAME_CONVERTER_FUNC cb, DSO_NAME_CONVERTER_FUNC *oldcb); -/* These functions can be used to get/set the platform-independant filename +/* These functions can be used to get/set the platform-independent filename * used for a DSO. NB: set will fail if the DSO is already loaded. */ const char *DSO_get_filename(DSO *dso); int DSO_set_filename(DSO *dso, const char *filename);