Raise exfile limit to 256
authorAlan T. DeKok <aland@freeradius.org>
Mon, 25 Apr 2016 18:13:27 +0000 (14:13 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 25 Apr 2016 18:13:43 +0000 (14:13 -0400)
src/modules/rlm_detail/rlm_detail.c
src/modules/rlm_linelog/rlm_linelog.c
src/modules/rlm_sql/rlm_sql.c

index 6442238..cc9bd6c 100644 (file)
@@ -132,7 +132,7 @@ static int mod_instantiate(CONF_SECTION *conf, void *instance)
                inst->escape_func = rad_filename_make_safe;
        }
 
-       inst->ef = exfile_init(inst, 64, 30, inst->locking);
+       inst->ef = exfile_init(inst, 256, 30, inst->locking);
        if (!inst->ef) {
                cf_log_err_cs(conf, "Failed creating log file context");
                return -1;
index 70fd210..c3bc263 100644 (file)
@@ -144,7 +144,7 @@ static int mod_instantiate(CONF_SECTION *conf, void *instance)
                return -1;
        }
 
-       inst->ef = exfile_init(inst, 64, 30, true);
+       inst->ef = exfile_init(inst, 256, 30, true);
        if (!inst->ef) {
                cf_log_err_cs(conf, "Failed creating log file context");
                return -1;
index 748bec2..fafcd63 100644 (file)
@@ -1011,7 +1011,7 @@ do { \
                }
        }
 
-       inst->ef = exfile_init(inst, 64, 30, true);
+       inst->ef = exfile_init(inst, 256, 30, true);
        if (!inst->ef) {
                cf_log_err_cs(conf, "Failed creating log file context");
                return -1;