summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/providers/krb5/krb5_utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/providers/krb5/krb5_utils.c b/src/providers/krb5/krb5_utils.c
index 6cfd48cf5..f99b0f99f 100644
--- a/src/providers/krb5/krb5_utils.c
+++ b/src/providers/krb5/krb5_utils.c
@@ -947,15 +947,15 @@ errno_t
cc_dir_create(const char *location, pcre *illegal_re,
uid_t uid, gid_t gid, bool private_path)
{
- const char *dirname;
+ const char *dir_name;
- dirname = sss_krb5_residual_check_type(location, SSS_KRB5_TYPE_DIR);
- if (dirname == NULL) {
+ dir_name = sss_krb5_residual_check_type(location, SSS_KRB5_TYPE_DIR);
+ if (dir_name == NULL) {
DEBUG(SSSDBG_CRIT_FAILURE, ("Bad residual type\n"));
return EINVAL;
}
- return create_ccache_dir_head(dirname, illegal_re, uid, gid, private_path);
+ return create_ccache_dir_head(dir_name, illegal_re, uid, gid, private_path);
}
static krb5_error_code