Skip Menu |
 

Subject: Allow kerberos configuration files fail with EPERM
allow kerberos configuration files fail with EPERM too (sandbox)

Vendor's priority - Serious Bug
Vendor's patch - LHA-6397043-ignore-EPERM-on-config-files
Including the patch
--- Kerberos.AEP-6.5fc1.orig/KerberosFramework/Kerberos5/Sources/util/profile/prof_init.c 2008-11-07 11:26:01.000000000 -0800
+++ Kerberos.AEP-6.5fc1/KerberosFramework/Kerberos5/Sources/util/profile/prof_init.c 2008-11-22 17:23:07.000000000 -0800
@@ -42,7 +42,7 @@
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) {
From: tsitkova@mit.edu
Subject: SVN Commit


https://github.com/krb5/krb5/commit/16f60c5ce14af056eb88bdaf250b1cdd0f10c695
Commit By: tsitkova



Revision: 21290
Changed Files:
U trunk/src/util/profile/prof_init.c