]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add missing definition
authorAlan T. DeKok <aland@freeradius.org>
Mon, 2 Dec 2019 14:00:33 +0000 (09:00 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 2 Dec 2019 14:00:33 +0000 (09:00 -0500)
src/lib/server/cf_priv.h

index 2bd849133c955a419bb5a8c2c35d2007df7c3072..d2bff906f734ac2f98f6cf7ece8bee5dd173be71 100644 (file)
@@ -113,9 +113,10 @@ struct cf_data {
 };
 
 typedef struct {
-       char const              *filename;
-       CONF_SECTION            *cs;
-       struct stat             buf;
+       char const              *filename;      //!< name of the file
+       CONF_SECTION            *cs;            //!< CONF_SECTION associated with the file
+       struct stat             buf;            //!< stat about the file
+       bool                    from_dir;       //!< was read from a directory
 } cf_file_t;
 
 CONF_ITEM *cf_remove(CONF_ITEM *parent, CONF_ITEM *child);