From 2a2250c2e3bf06005c38eba5a36bdcf4addede44 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 10 May 1999 03:47:21 +0000 Subject: [PATCH] (doit_v5): call krb5_sendauth with ccache == NULL git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6192 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/pop_debug.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/appl/popper/pop_debug.c b/appl/popper/pop_debug.c index 28a41678c..ffc5eab1d 100644 --- a/appl/popper/pop_debug.c +++ b/appl/popper/pop_debug.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan + * Copyright (c) 1995 - 1999 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -129,15 +129,12 @@ doit_v5 (char *host, int port) { krb5_error_code ret; krb5_context context; - krb5_ccache ccache; krb5_auth_context auth_context = NULL; krb5_principal server; int s = get_socket (host, port); krb5_init_context (&context); - krb5_cc_default (context, &ccache); - ret = krb5_sname_to_principal (context, host, "pop", @@ -157,7 +154,7 @@ doit_v5 (char *host, int port) 0, NULL, NULL, - ccache, + NULL, NULL, NULL, NULL);