diff --git a/sesman/config.c b/sesman/config.c index 0363b330..d2768612 100644 --- a/sesman/config.c +++ b/sesman/config.c @@ -83,9 +83,6 @@ config_read(struct config_sesman *cfg) config_read_rdp_params(fd, cfg, param_n, param_v); config_read_xorg_params(fd, cfg, param_n, param_v); - /* read logging config */ - // config_read_logging(fd, &(cfg->log), param_n, param_v); - /* read security config */ config_read_security(fd, &(cfg->sec), param_n, param_v); diff --git a/sesman/config.h b/sesman/config.h index 6bc10852..b26ab64f 100644 --- a/sesman/config.h +++ b/sesman/config.h @@ -276,20 +276,6 @@ int config_read_globals(int file, struct config_sesman* cf, struct list* param_n, struct list* param_v); -/** - * - * @brief Reads sesman [logging] configuration section - * @param file configuration file descriptor - * @param lc pointer to a log_config struct - * @param param_n parameter name list - * @param param_v parameter value list - * @return 0 on success, 1 on failure - * - */ -int -config_read_logging(int file, struct log_config* lc, struct list* param_n, - struct list* param_v); - /** * * @brief Reads sesman [Security] configuration section