summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-09-30 15:53:44 +0000
committerGreg Hudson <ghudson@mit.edu>2010-09-30 15:53:44 +0000
commit5fac4b5b3c63d64c0e9b463d6ea01f6b494f5822 (patch)
tree01548a8e5e53ac400df7048aaf6be5bd7390423d /src/include
parent681d4c4cf70f98b7f140bfa79042d65db1f389c1 (diff)
downloadkrb5-5fac4b5b3c63d64c0e9b463d6ea01f6b494f5822.tar.gz
krb5-5fac4b5b3c63d64c0e9b463d6ea01f6b494f5822.tar.xz
krb5-5fac4b5b3c63d64c0e9b463d6ea01f6b494f5822.zip
Whitespace and minor style changes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24390 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/krb5.hin19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin
index c81a0f21eb..1b60dac837 100644
--- a/src/include/krb5/krb5.hin
+++ b/src/include/krb5/krb5.hin
@@ -1434,10 +1434,11 @@ typedef struct _krb5_cccol_cursor *krb5_cccol_cursor;
#define KRB5_TC_OPENCLOSE 0x00000001
#define KRB5_TC_NOTICKET 0x00000002
-/** Retrieve the name but not type of a credential cache @returns The name of
- * the credential cache as an alias that should not be freed or modified by the
- * caller. This name does not include the type portion, so cannot be used as
- * input to krb5_cc_resolve().
+/** Retrieve the name but not type of a credential cache.
+ *
+ * @return The name of the credential cache as an alias that should not be
+ * freed or modified by the caller. This name does not include the type
+ * portion, so cannot be used as input to krb5_cc_resolve().
*/
const char * KRB5_CALLCONV
krb5_cc_get_name(krb5_context context, krb5_ccache cache);
@@ -1489,8 +1490,10 @@ krb5_cc_set_flags(krb5_context context, krb5_ccache cache, krb5_flags flags);
krb5_error_code KRB5_CALLCONV
krb5_cc_get_flags(krb5_context context, krb5_ccache cache, krb5_flags *flags);
-/** Retrive the type of a credential cache @returns The type of a credential
- * cache as an alias that should not be modified or freed by the caller.
+/** Retrieve the type of a credential cache.
+ *
+ * @return The type of a credential cache as an alias that should not be
+ * modified or freed by the caller.
*/
const char * KRB5_CALLCONV
krb5_cc_get_type(krb5_context context, krb5_ccache cache);
@@ -2339,11 +2342,11 @@ krb5_get_init_creds_opt_set_fast_ccache_name(krb5_context context,
/** Set the FAST ccache name as in
* krb5_get_init_creds_opt_set_fast_ccache_name() but using a krb5_ccache
- * rather than a name
+ * rather than a name.
*/
krb5_error_code KRB5_CALLCONV
krb5_get_init_creds_opt_set_fast_ccache(krb5_context context,
- krb5_get_init_creds_opt *opt,
+ krb5_get_init_creds_opt *opt,
krb5_ccache fast_ccache_name);
/**