aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2018-05-30 23:32:01 +0200
committerToni Uhlig <matzeton@googlemail.com>2018-05-30 23:32:01 +0200
commit9badf738fcd67ff8b61c56f28cdb15ac614eff7a (patch)
tree56464361155f6081843662b77ef6df5a9f921589 /src/main.c
parent1c9022f075387e86269a79ac71f61dd4ac32c421 (diff)
POTD skeleton #84.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 855568a..190ede2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -12,6 +12,7 @@
#include "log.h"
#include "log_colored.h"
#include "log_file.h"
+#include "options.h"
#include "utils.h"
#include "redirector.h"
#include "protocol_ssh.h"
@@ -129,12 +130,21 @@ int main(int argc, char *argv[])
(void) argv;
arg0 = argv[0];
- //LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS);
- log_file = strdup("./potd.log");
- LOG_SET_FUNCS_VA(LOG_FILE_FUNCS);
+ if (options_cmdline(argc, argv)) {
+ fprintf(stderr, "%s: parsing command line failed\n", argv[0]);
+ exit(EXIT_FAILURE);
+ }
+
+ if (getopt_used(OPT_LOGFILE)) {
+ log_file = getopt_str(OPT_LOGFILE);
+ LOG_SET_FUNCS_VA(LOG_FILE_FUNCS);
+ } else {
+ LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS);
+ }
//log_prio = DEBUG;
if (log_open())
exit(EXIT_FAILURE);
+
#ifdef HAVE_CONFIG_H
N("%s (C) 2018 Toni Uhlig (%s)", PACKAGE_STRING, PACKAGE_BUGREPORT);
#endif