aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-10-13 17:20:36 +0000
committerGreg Hudson <ghudson@mit.edu>2010-10-13 17:20:36 +0000
commitca191a3017e6a12ee412d0376ff72d80a321f7b1 (patch)
tree1d98cf45e5e15ff2ade7dc67e868a020e94882a9
parent3690d46546d4b99d2a3405e1e003aea1008c1948 (diff)
downloadkrb5-ca191a3017e6a12ee412d0376ff72d80a321f7b1.zip
krb5-ca191a3017e6a12ee412d0376ff72d80a321f7b1.tar.gz
krb5-ca191a3017e6a12ee412d0376ff72d80a321f7b1.tar.bz2
Whitespace
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24454 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/lib/krb5/krb/get_in_tkt.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/krb5/krb/get_in_tkt.c b/src/lib/krb5/krb/get_in_tkt.c
index ab5f8ab..71d1e12 100644
--- a/src/lib/krb5/krb/get_in_tkt.c
+++ b/src/lib/krb5/krb/get_in_tkt.c
@@ -823,10 +823,12 @@ krb5_init_creds_init(krb5_context context,
ctx->start_time = start_time;
if (options == NULL) {
- /* We initialize a non-extended options because that way the shadowed
- flag will be sent and they will be freed when the init_creds context is
- freed. The options will be extended and copied off the stack into
- storage by opt_to_opte.*/
+ /*
+ * We initialize a non-extended options because that way the shadowed
+ * flag will be sent and they will be freed when the init_creds context
+ * is freed. The options will be extended and copied off the stack into
+ * storage by opt_to_opte.
+ */
krb5_get_init_creds_opt_init(&local_opts);
options = &local_opts;
}
@@ -1179,7 +1181,7 @@ init_creds_step_request(krb5_context context,
goto cleanup;
cleanup:
- krb5_free_pa_data( context, ctx->request->padata);
+ krb5_free_pa_data(context, ctx->request->padata);
ctx->request->padata = NULL;
return code;
}