summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/rcache/rc_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/rcache/rc_io.c b/src/lib/krb5/rcache/rc_io.c
index b76a8dd0c..94e0e542a 100644
--- a/src/lib/krb5/rcache/rc_io.c
+++ b/src/lib/krb5/rcache/rc_io.c
@@ -130,8 +130,8 @@ krb5_rc_io_creat(krb5_context context, krb5_rc_iostuff *d, char **fn)
case EEXIST:
retval = KRB5_RC_IO_PERM;
krb5_set_error_message(context, retval,
- "Cannot create replay cache: %s",
- strerror(errno));
+ "Cannot create replay cache file %s: %s",
+ d->fn, strerror(errno));
do_not_unlink = 1;
goto cleanup;