diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2002-02-06 09:18:32 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2002-02-06 09:18:32 +0000 |
commit | 85a1da6c1b6979ac63e266917b2d9790c530a472 (patch) | |
tree | 34341fd91c5a1a26293439fc0e4d45351411a6d8 /libexec/login_krb5 | |
parent | 1c3002dcb34c34a7af83455c909bd3b78e61ca92 (diff) |
Fix for heimdal-0.4e
Diffstat (limited to 'libexec/login_krb5')
-rw-r--r-- | libexec/login_krb5/login_krb5.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/login_krb5/login_krb5.c b/libexec/login_krb5/login_krb5.c index 1ae9199b6ee..59949277dbb 100644 --- a/libexec/login_krb5/login_krb5.c +++ b/libexec/login_krb5/login_krb5.c @@ -1,7 +1,7 @@ -/* $OpenBSD: login_krb5.c,v 1.12 2001/08/12 21:55:46 millert Exp $ */ +/* $OpenBSD: login_krb5.c,v 1.13 2002/02/06 09:18:31 hin Exp $ */ /*- - * Copyright (c) 2001 Hans Insulander <hin@openbsd.org>. + * Copyright (c) 2001, 2002 Hans Insulander <hin@openbsd.org>. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -121,8 +121,8 @@ store_tickets(struct passwd *pwd, int ticket_newfiles, int ticket_store, exit(1); } - ret = krb524_convert_creds_kdc(context, ccache, - &cred, &c); + ret = krb524_convert_creds_kdc_ccache(context, ccache, + &cred, &c); if (ret != 0) { krb5_syslog(context, LOG_ERR, ret, "convert"); |