pass extra argument to krb5_cc_[gs]et_config.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23419 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-07-26 18:37:07 +00:00
parent 55b7603443
commit 82570534fc

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006 Kungliga Tekniska H<>gskolan
* Copyright (c) 2006 - 2008 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -135,7 +135,8 @@ get_user_ccache(const ntlm_name name, char **username, struct ntlm_buf *key)
goto out;
}
ret = krb5_cc_get_config(context, id, confname, &data);
ret = krb5_cc_get_config(context, id, NULL,
confname, &data);
key->data = malloc(data.length);
if (key->data == NULL)