]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Directories need to be +x
authorAlan T. DeKok <aland@freeradius.org>
Sat, 11 Feb 2012 09:07:11 +0000 (10:07 +0100)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 11 Feb 2012 09:24:15 +0000 (10:24 +0100)
src/modules/rlm_sql_log/rlm_sql_log.c

index 9dff1a048e42e329e4a438ea6e5506e73522d9d0..0aca3d4b5220f2018a91c3b746ec41f25776e964 100644 (file)
@@ -372,7 +372,7 @@ static int sql_log_write(rlm_sql_log_t *inst, REQUEST *request, const char *line
        p = strrchr(path, '/');
        if (p) {
                *p = '\0';
-               rad_mkdir(path, 0644);
+               rad_mkdir(path, 0755);
                *p = '/';
        }