projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15ad628
)
--syslog and --logfile are mutually exclusive.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 14 Mar 2015 12:02:29 +0000
(12:02 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sat, 14 Mar 2015 12:02:29 +0000
(12:02 +0000)
src/tincd.c
patch
|
blob
|
history
diff --git
a/src/tincd.c
b/src/tincd.c
index
c4806ba
..
d497bcc
100644
(file)
--- a/
src/tincd.c
+++ b/
src/tincd.c
@@
-187,6
+187,7
@@
static bool parse_options(int argc, char **argv) {
break;
case 's': /* syslog */
+ use_logfile = false;
use_syslog = true;
break;
@@
-225,6
+226,7
@@
static bool parse_options(int argc, char **argv) {
break;
case 4: /* write log entries to a file */
+ use_syslog = false;
use_logfile = true;
if(!optarg && optind < argc && *argv[optind] != '-')
optarg = argv[optind++];