diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-06-27 19:43:08 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-07-06 11:44:45 -0400 |
commit | 71062d4494bbe9c24358e21fa3a40ae747eae0f6 (patch) | |
tree | 0dbd59aaa3021c28f7adc87c27c7680bbb62a34c | |
parent | a9c8fdfc939813eafceeecf3ec694608868d8000 (diff) | |
download | sssd-71062d4494bbe9c24358e21fa3a40ae747eae0f6.tar.gz sssd-71062d4494bbe9c24358e21fa3a40ae747eae0f6.tar.xz sssd-71062d4494bbe9c24358e21fa3a40ae747eae0f6.zip |
KRB5_LOCATOR: Print the filename that couldn't be opened
-rw-r--r-- | src/krb5_plugin/sssd_krb5_locator_plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/krb5_plugin/sssd_krb5_locator_plugin.c b/src/krb5_plugin/sssd_krb5_locator_plugin.c index 7ecdb29bd..402fd03e7 100644 --- a/src/krb5_plugin/sssd_krb5_locator_plugin.c +++ b/src/krb5_plugin/sssd_krb5_locator_plugin.c @@ -124,7 +124,8 @@ static int get_krb5info(const char *realm, struct sssd_ctx *ctx, fd = open(krb5info_name, O_RDONLY); if (fd == -1) { - PLUGIN_DEBUG(("open failed [%d][%s].\n", errno, strerror(errno))); + PLUGIN_DEBUG(("open failed [%s][%d][%s].\n", + krb5info_name, errno, strerror(errno))); ret = errno; goto done; } |