summaryrefslogtreecommitdiffhomepage
path: root/cli-runopts.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli-runopts.c')
-rw-r--r--cli-runopts.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/cli-runopts.c b/cli-runopts.c
index 25a2f16..2ecf599 100644
--- a/cli-runopts.c
+++ b/cli-runopts.c
@@ -864,6 +864,9 @@ static void add_extendedopt(const char* origstr) {
#ifdef ENABLE_CLI_ANYTCPFWD
"\tExitOnForwardFailure\n"
#endif
+#ifndef DISABLE_SYSLOG
+ "\tUseSyslog\n"
+#endif
);
exit(EXIT_SUCCESS);
}
@@ -875,5 +878,12 @@ static void add_extendedopt(const char* origstr) {
}
#endif
+#ifndef DISABLE_SYSLOG
+ if (match_extendedopt(&optstr, "UseSyslog") == DROPBEAR_SUCCESS) {
+ opts.usingsyslog = parse_flag_value(optstr);
+ return;
+ }
+#endif
+
dropbear_exit("Bad configuration option '%s'", origstr);
}