Remove debug printfs.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17989 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-09-04 11:04:35 +00:00
parent c3b24d8d8e
commit fe562592c6

View File

@@ -317,9 +317,7 @@ get_init_creds_common(krb5_context context,
ctx->flags.b.renewable = 1; ctx->flags.b.renewable = 1;
if (options->flags & KRB5_GET_INIT_CREDS_OPT_ADDRESS_LIST) { if (options->flags & KRB5_GET_INIT_CREDS_OPT_ADDRESS_LIST) {
ctx->addrs = options->address_list; ctx->addrs = options->address_list;
printf("list\n");
} else if (options->opt_private) { } else if (options->opt_private) {
printf("addresslessness\n");
switch (options->opt_private->addressless) { switch (options->opt_private->addressless) {
case KRB5_INIT_CREDS_TRISTATE_UNSET: case KRB5_INIT_CREDS_TRISTATE_UNSET:
#if KRB5_ADDRESSLESS_DEFAULT == TRUE #if KRB5_ADDRESSLESS_DEFAULT == TRUE
@@ -327,15 +325,12 @@ get_init_creds_common(krb5_context context,
#else #else
ctx->addrs = NULL; ctx->addrs = NULL;
#endif #endif
printf("unset\n");
break; break;
case KRB5_INIT_CREDS_TRISTATE_FALSE: case KRB5_INIT_CREDS_TRISTATE_FALSE:
ctx->addrs = NULL; ctx->addrs = NULL;
printf("false\n");
break; break;
case KRB5_INIT_CREDS_TRISTATE_TRUE: case KRB5_INIT_CREDS_TRISTATE_TRUE:
ctx->addrs = &no_addrs; ctx->addrs = &no_addrs;
printf("true\n");
break; break;
} }
} }