1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r17999: No need to prevent others from reading. Use 755 instead

of 700, and 644 instead of 600. Reading might help
debugging.
Jeremy.
This commit is contained in:
Jeremy Allison 2006-09-02 03:42:55 +00:00 committed by Gerald (Jerry) Carter
parent c59eff3e53
commit 99f100cfec

View File

@ -484,7 +484,7 @@ BOOL create_local_private_krb5_conf_for_domain(const char *realm, const char *do
if (!dname) {
return False;
}
if (mkdir(dname, 0700)==-1) {
if (mkdir(dname, 0755)==-1) {
DEBUG(0,("create_local_private_krb5_conf_for_domain: "
"failed to create directory %s. Error was %s\n",
dname, strerror(errno) ));
@ -519,7 +519,7 @@ BOOL create_local_private_krb5_conf_for_domain(const char *realm, const char *do
while (loopcount < 10) {
SMB_STRUCT_STAT st;
xfp = x_fopen(fname, O_CREAT|O_WRONLY, 0600);
xfp = x_fopen(fname, O_CREAT|O_WRONLY, 0644);
if (!xfp) {
TALLOC_FREE(dname);
return False;