summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoichiro IWAO <meta@vmeta.jp>2018-05-30 02:32:44 +0900
committerKoichiro IWAO <meta@vmeta.jp>2018-06-05 00:19:33 +0900
commite4857b13fa679bb2b865db66c8d4f8b4bb9c2e70 (patch)
treeffe1ab38da88b1b019a8d2d5ab673c80145a789d
parent57015aa08862d6e7d21a04ecb6fbfde3c2cc79fd (diff)
downloadxrdp-proprietary-e4857b13fa679bb2b865db66c8d4f8b4bb9c2e70.tar.gz
xrdp-proprietary-e4857b13fa679bb2b865db66c8d4f8b4bb9c2e70.zip
sesman: config_read_logging function no longer exists
-rw-r--r--sesman/config.c3
-rw-r--r--sesman/config.h14
2 files changed, 0 insertions, 17 deletions
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
@@ -278,20 +278,6 @@ config_read_globals(int file, struct config_sesman* cf,
/**
*
- * @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
* @param file configuration file descriptor
* @param sc pointer to a config_security struct