summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache
diff options
context:
space:
mode:
authorZhanna Tsitkov <tsitkova@mit.edu>2009-11-30 22:29:48 +0000
committerZhanna Tsitkov <tsitkova@mit.edu>2009-11-30 22:29:48 +0000
commitbbb952ae5f5b7b8803de125b35dda3395155ddbb (patch)
treee05b592e76f6c4e48d655961df9195494c28563e /src/lib/krb5/ccache
parent207e73bd53f9e32910e6ce6187704b823b6296c0 (diff)
downloadkrb5-bbb952ae5f5b7b8803de125b35dda3395155ddbb.tar.gz
krb5-bbb952ae5f5b7b8803de125b35dda3395155ddbb.tar.xz
krb5-bbb952ae5f5b7b8803de125b35dda3395155ddbb.zip
Reindent
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23393 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache')
-rw-r--r--src/lib/krb5/ccache/ccbase.c16
-rw-r--r--src/lib/krb5/ccache/cccursor.c52
2 files changed, 29 insertions, 39 deletions
diff --git a/src/lib/krb5/ccache/ccbase.c b/src/lib/krb5/ccache/ccbase.c
index fb3d7ec9d..7deb0a1e4 100644
--- a/src/lib/krb5/ccache/ccbase.c
+++ b/src/lib/krb5/ccache/ccbase.c
@@ -245,10 +245,9 @@ krb5_cc_resolve (krb5_context context, const char *name, krb5_ccache *cache)
* prefix string.
*/
static krb5_error_code
-krb5int_cc_getops(
- krb5_context context,
- const char *pfx,
- const krb5_cc_ops **ops)
+krb5int_cc_getops(krb5_context context,
+ const char *pfx,
+ const krb5_cc_ops **ops)
{
krb5_error_code err;
struct krb5_cc_typelist *tlist;
@@ -331,10 +330,9 @@ errout:
}
krb5_error_code
-krb5int_cc_typecursor_next(
- krb5_context context,
- krb5_cc_typecursor t,
- const krb5_cc_ops **ops)
+krb5int_cc_typecursor_next(krb5_context context,
+ krb5_cc_typecursor t,
+ const krb5_cc_ops **ops)
{
krb5_error_code err = 0;
@@ -364,7 +362,7 @@ krb5int_cc_typecursor_free(krb5_context context, krb5_cc_typecursor *t)
}
krb5_error_code KRB5_CALLCONV
-krb5_cc_move (krb5_context context, krb5_ccache src, krb5_ccache dst)
+krb5_cc_move(krb5_context context, krb5_ccache src, krb5_ccache dst)
{
krb5_error_code ret = 0;
krb5_principal princ = NULL;
diff --git a/src/lib/krb5/ccache/cccursor.c b/src/lib/krb5/ccache/cccursor.c
index 852eff847..4272c0461 100644
--- a/src/lib/krb5/ccache/cccursor.c
+++ b/src/lib/krb5/ccache/cccursor.c
@@ -65,9 +65,8 @@ static krb5_error_code
cccol_pertype_next(krb5_context, krb5_cccol_cursor, krb5_ccache *);
krb5_error_code KRB5_CALLCONV
-krb5_cccol_cursor_new(
- krb5_context context,
- krb5_cccol_cursor *cursor)
+krb5_cccol_cursor_new(krb5_context context,
+ krb5_cccol_cursor *cursor)
{
krb5_error_code ret = 0;
krb5_cccol_cursor n = NULL;
@@ -111,10 +110,9 @@ errout:
}
krb5_error_code KRB5_CALLCONV
-krb5_cccol_cursor_next(
- krb5_context context,
- krb5_cccol_cursor cursor,
- krb5_ccache *ccache)
+krb5_cccol_cursor_next(krb5_context context,
+ krb5_cccol_cursor cursor,
+ krb5_ccache *ccache)
{
krb5_error_code ret = 0;
char *name;
@@ -173,9 +171,8 @@ errout:
}
krb5_error_code KRB5_CALLCONV
-krb5_cccol_cursor_free(
- krb5_context context,
- krb5_cccol_cursor *cursor)
+krb5_cccol_cursor_free(krb5_context context,
+ krb5_cccol_cursor *cursor)
{
krb5_cccol_cursor c = *cursor;
int i;
@@ -200,9 +197,8 @@ krb5_cccol_cursor_free(
}
krb5_error_code KRB5_CALLCONV
-krb5_cccol_last_change_time(
- krb5_context context,
- krb5_timestamp *change_time)
+krb5_cccol_last_change_time(krb5_context context,
+ krb5_timestamp *change_time)
{
krb5_error_code ret = 0;
krb5_cccol_cursor c = NULL;
@@ -240,10 +236,9 @@ krb5_cccol_last_change_time(
* higher-priority defaults.
*/
static int
-cccol_already(
- krb5_context context,
- krb5_cccol_cursor c,
- krb5_ccache *ccache)
+cccol_already(krb5_context context,
+ krb5_cccol_cursor c,
+ krb5_ccache *ccache)
{
const char *name = NULL, *prefix = NULL;
int i;
@@ -270,10 +265,9 @@ cccol_already(
* Compare {prefix, name} against a cc_fullname.
*/
static int
-cccol_cmpname(
- const char *prefix,
- const char *name,
- struct cc_fullname *fullname)
+cccol_cmpname(const char *prefix,
+ const char *name,
+ struct cc_fullname *fullname)
{
if (fullname->pfx == NULL || fullname->res == NULL)
return 0;
@@ -292,11 +286,10 @@ cccol_cmpname(
* name we're given.
*/
static krb5_error_code
-cccol_do_resolve(
- krb5_context context,
- krb5_cccol_cursor cursor,
- const char *name,
- krb5_ccache *ccache)
+cccol_do_resolve(krb5_context context,
+ krb5_cccol_cursor cursor,
+ const char *name,
+ krb5_ccache *ccache)
{
krb5_error_code ret = 0;
struct cc_fullname *fullname;
@@ -321,10 +314,9 @@ cccol_do_resolve(
* ccache list of the current backend is exhausted.
*/
static krb5_error_code
-cccol_pertype_next(
- krb5_context context,
- krb5_cccol_cursor cursor,
- krb5_ccache *ccache)
+cccol_pertype_next(krb5_context context,
+ krb5_cccol_cursor cursor,
+ krb5_ccache *ccache)
{
krb5_error_code ret = 0;