summaryrefslogtreecommitdiffstats
path: root/src/include/kim/kim_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/kim/kim_string.h')
-rw-r--r--src/include/kim/kim_string.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/include/kim/kim_string.h b/src/include/kim/kim_string.h
index f68f4a409..283a49742 100644
--- a/src/include/kim/kim_string.h
+++ b/src/include/kim/kim_string.h
@@ -6,7 +6,7 @@
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
- *
+ *
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
@@ -34,8 +34,8 @@ extern "C" {
/*!
* \page kim_string_overview KIM String Overview
*
- * A UTF8 string.
- *
+ * A UTF8 string.
+ *
* Memory management routines are provided for runtime consistency on
* operating systems with shared libraries and multiple runtimes.
*
@@ -43,21 +43,21 @@ extern "C" {
*
* Like most C APIs, the KIM API returns numeric error codes. These error
* codes may come from KIM, krb5 or GSS APIs. In most cases the caller will
- * want to handle these error programmatically. However, in some circumstances
- * the caller may wish to print an error string to the user.
+ * want to handle these error programmatically. However, in some circumstances
+ * the caller may wish to print an error string to the user.
*
* One problem with just printing the error code to the user is that frequently
- * the context behind the error has been lost. For example if KIM is trying to
+ * the context behind the error has been lost. For example if KIM is trying to
* obtain credentials via referrals, it may fail partway through the process.
* In this case the error code will be KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN, which
* maps to "Client not found in Kerberos database". Unfortunately this error
* isn't terribly helpful because it doesn't tell the user whether they typoed
- * their principal name or if referrals failed.
+ * their principal name or if referrals failed.
*
- * To avoid this problem, KIM maintains an explanatory string for the last
+ * To avoid this problem, KIM maintains an explanatory string for the last
* error seen in each thread calling into KIM. If a caller wishes to display
* an error to the user, immediately after getting the error the caller should
- * call #kim_string_create_for_last_error() to obtain a copy of the
+ * call #kim_string_create_for_last_error() to obtain a copy of the
* descriptive error message.
*
* See \ref kim_string_reference for information on specific APIs.
@@ -69,24 +69,24 @@ extern "C" {
*/
/*!
- * \param out_string On success, a human-readable UTF-8 string describing the
+ * \param out_string On success, a human-readable UTF-8 string describing the
* error representedby \a in_error. Must be freed with
* kim_string_free().
* \param in_error an error code. Used to verify that the correct error
* string will be returned (see note below).
- * \return On success, KIM_NO_ERROR.
- * \note This API is implemented using thread local storage. It should be
+ * \return On success, KIM_NO_ERROR.
+ * \note This API is implemented using thread local storage. It should be
* called immediately after a KIM API returns an error code so that the correct
- * string is returned. The returned copy may then be held by the caller until
+ * string is returned. The returned copy may then be held by the caller until
* needed. If \a in_error does not match the last saved error KIM may return
* a less descriptive string.
* \brief Get a text description of an error suitable for display to the user.
*/
kim_error kim_string_create_for_last_error (kim_string *out_string,
kim_error in_error);
-
+
/*!
- * \param out_string on exit, a new string object which is a copy of \a in_string.
+ * \param out_string on exit, a new string object which is a copy of \a in_string.
Must be freed with kim_string_free().
* \param in_string the string to copy.
* \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure.
@@ -103,10 +103,10 @@ kim_error kim_string_copy (kim_string *out_string,
* \return On success, #KIM_NO_ERROR. On failure, an error code representing the failure.
* \brief Compare two strings.
*/
-kim_error kim_string_compare (kim_string in_string,
+kim_error kim_string_compare (kim_string in_string,
kim_string in_compare_to_string,
kim_comparison *out_comparison);
-
+
/*!
* \param io_string a string to be freed. Set to NULL on exit.
* \brief Free memory associated with a string.