summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/krb5.hin17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin
index 977977e87a..0e7fd3fe5d 100644
--- a/src/include/krb5/krb5.hin
+++ b/src/include/krb5/krb5.hin
@@ -4024,21 +4024,14 @@ krb5_cc_get_config(krb5_context context, krb5_ccache id,
/** Store some configuration for the credential cache in the cache.
*
- * @param context a Keberos context [input,output]
- * @param id the credential cache to store the data for. [input]
- * @param principal configuration for a specific principal; if NULL, global for the whole cache.[input]
- * @param key name under which the configuraion is stored.[input]
- * @param data data to store. [input]
+ * @param [in,out] context a Keberos context
+ * @param [in] id the credential cache to store the data for.
+ * @param [in] principal configuration for a specific principal; if NULL, global for the whole cache.
+ * @param [in] key name under which the configuraion is stored.
+ * @param [in] data data to store. If NULL, old configuration is removed.
*
* @note Existing configuration under the same key is over-written.
*
- * @code
- * Example:
- * config_data.data = "yes";
- * config_data.length = strlen(config_data.data);
- * krb5_cc_set_config(context, id, principal,key, &config_data);
- * @endcode
- *
* @retval
* 0 Success
* @return