From: Alan T. DeKok Date: Mon, 2 Dec 2019 14:00:33 +0000 (-0500) Subject: add missing definition X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34fe6d34eb61a0c8d6a2a5e2b2404e9cd94ff6ca;p=thirdparty%2Ffreeradius-server.git add missing definition --- diff --git a/src/lib/server/cf_priv.h b/src/lib/server/cf_priv.h index 2bd849133c9..d2bff906f73 100644 --- a/src/lib/server/cf_priv.h +++ b/src/lib/server/cf_priv.h @@ -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);