diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/utils/os_utils.h | 4 | ||||
-rw-r--r-- | src/lib/x509/certstor_flatfile/certstor_flatfile.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/utils/os_utils.h b/src/lib/utils/os_utils.h index 81d66f170..e10b529db 100644 --- a/src/lib/utils/os_utils.h +++ b/src/lib/utils/os_utils.h @@ -104,11 +104,11 @@ const char* read_env_variable(const std::string& var_name); size_t read_env_variable_sz(const std::string& var_name, size_t def_value = 0); /** -* Request @count pages of RAM which are locked into memory using mlock, +* Request @param count pages of RAM which are locked into memory using mlock, * VirtualLock, or some similar OS specific API. Free it with free_locked_pages. * * Returns an empty list on failure. This function is allowed to return fewer -* than @count pages. +* than @param count pages. * * The contents of the allocated pages are undefined. * diff --git a/src/lib/x509/certstor_flatfile/certstor_flatfile.h b/src/lib/x509/certstor_flatfile/certstor_flatfile.h index 8d1da3074..a778e045e 100644 --- a/src/lib/x509/certstor_flatfile/certstor_flatfile.h +++ b/src/lib/x509/certstor_flatfile/certstor_flatfile.h @@ -26,6 +26,7 @@ class BOTAN_PUBLIC_API(2, 11) Flatfile_Certificate_Store final : public Certific * Construct a new Certificate_Store given a file path to a file including * PEMs of trusted self-signed CAs. * + * @param file the name of the file to read certificates from * @param ignore_non_ca if true, certs that are not self-signed CA certs will * be ignored. Otherwise (if false), an exception will be thrown instead. */ |