mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-22 22:25:51 +01:00
- When the user uses bad syntax in the Log config line, stop
suggesting other bad syntax as a replacement. svn:r9247
This commit is contained in:
parent
7396b8eecf
commit
9545bbf57f
2 changed files with 4 additions and 1 deletions
|
@ -132,6 +132,8 @@ Changes in version 0.1.2.5-alpha - 2007-01-03
|
|||
the nameserver is dead. (Also bug #326)
|
||||
- Directory authorities now only decide that routers are reachable
|
||||
if their identity keys are as expected.
|
||||
- When the user uses bad syntax in the Log config line, stop
|
||||
suggesting other bad syntax as a replacement.
|
||||
|
||||
o Controller features:
|
||||
- Have GETINFO dir/status/* work on hosts with DirPort disabled.
|
||||
|
|
|
@ -3248,7 +3248,8 @@ options_init_logs(or_options_t *options, int validate_only)
|
|||
(const char*)smartlist_get(elts,1));
|
||||
if (strchr(smartlist_get(elts,1), '/') ||
|
||||
strchr(smartlist_get(elts,1), '\\')) {
|
||||
log_warn(LD_CONFIG, "Did you mean to say 'Log file %s' ?",
|
||||
log_warn(LD_CONFIG, "Did you mean to say 'Log %s file %s' ?",
|
||||
(const char *)smartlist_get(elts,0),
|
||||
(const char *)smartlist_get(elts,1));
|
||||
}
|
||||
ok = 0; goto cleanup;
|
||||
|
|
Loading…
Add table
Reference in a new issue