From 6e38740a18f8a99779c98d16d4a7500d3feda5fa Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 9 Jan 2001 18:44:29 +0000 Subject: [PATCH] (save_krb5_creds): use krb5_rd_cred2 instead of krb5_rd_cred git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9464 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/rsh/rshd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appl/rsh/rshd.c b/appl/rsh/rshd.c index 44a1f9324..7c94d9637 100644 --- a/appl/rsh/rshd.c +++ b/appl/rsh/rshd.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997-2000 Kungliga Tekniska Högskolan + * Copyright (c) 1997-2001 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -222,7 +222,7 @@ save_krb5_creds (int s, } krb5_cc_initialize(context,ccache,client); - ret = krb5_rd_cred(context, auth_context, ccache,&remote_cred); + ret = krb5_rd_cred2(context, auth_context, ccache, &remote_cred); krb5_data_free (&remote_cred); if (ret) return 0;