]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
just use "filename"
authorAlan T. DeKok <aland@freeradius.org>
Sun, 29 Apr 2018 00:35:22 +0000 (20:35 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 30 Apr 2018 19:28:40 +0000 (15:28 -0400)
raddb/sites-available/detail
src/modules/proto_detail/proto_detail_file.c
src/modules/proto_detail/proto_detail_work.c

index 883a2660a83c332301ffbcf25c9f521d3e421c94..4df3beb41fcedd4c719a59f5472e4b79ee1614e9 100644 (file)
@@ -133,7 +133,7 @@ server detail {
                        #  The best way to enforce that is to give the
                        #  the files different prefixes.
                        #
-                       filename.work = "${confdir}/detail.work"
+                       filename = "${confdir}/detail.work"
 
                        #
                        #  Track progress through the detail file.  When the detail
index 4f9ea01fb153f50423fee239624ac06696418235..eb1fd1941970c9a95f50378bd40b026540b87eba 100644 (file)
@@ -63,7 +63,7 @@ static void mod_vnode_delete(fr_event_list_t *el, int fd, UNUSED int fflags, voi
 static const CONF_PARSER file_listen_config[] = {
        { FR_CONF_OFFSET("filename", FR_TYPE_STRING | FR_TYPE_REQUIRED, proto_detail_file_t, filename ) },
 
-       { FR_CONF_OFFSET("filename.work", FR_TYPE_STRING, proto_detail_work_t, filename_work ) },
+       { FR_CONF_OFFSET("filename_work", FR_TYPE_STRING, proto_detail_work_t, filename_work ) },
 
        { FR_CONF_OFFSET("poll_interval", FR_TYPE_UINT32, proto_detail_file_t, poll_interval), .dflt = "5" },
 
index 313492b901a18a22dbd61f43e6654e4b2723867c..292f65eaf86185e0ce99ba6f1145887d3d52ac29 100644 (file)
@@ -75,7 +75,7 @@ static CONF_PARSER limit_config[] = {
 
 
 static const CONF_PARSER file_listen_config[] = {
-       { FR_CONF_OFFSET("filename.work", FR_TYPE_STRING | FR_TYPE_REQUIRED, proto_detail_work_t, filename_work ) },
+       { FR_CONF_OFFSET("filename", FR_TYPE_STRING | FR_TYPE_REQUIRED, proto_detail_work_t, filename_work ) },
 
        { FR_CONF_OFFSET("track", FR_TYPE_BOOL, proto_detail_work_t, track_progress ) },