From 16f60c5ce14af056eb88bdaf250b1cdd0f10c695 Mon Sep 17 00:00:00 2001 From: Zhanna Tsitkov Date: Fri, 5 Dec 2008 19:59:35 +0000 Subject: [PATCH] Ticket: 6286 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21290 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/profile/prof_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/profile/prof_init.c b/src/util/profile/prof_init.c index 248ea5df0..d8653049c 100644 --- a/src/util/profile/prof_init.c +++ b/src/util/profile/prof_init.c @@ -42,7 +42,7 @@ profile_init(const_profile_filespec_t *files, profile_t *ret_profile) for (fs = files; !PROFILE_LAST_FILESPEC(*fs); fs++) { retval = profile_open_file(*fs, &new_file); /* if this file is missing, skip to the next */ - if (retval == ENOENT || retval == EACCES) { + if (retval == ENOENT || retval == EACCES || retval == EPERM) { continue; } if (retval) { -- 2.26.2