mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
r9313@Kushana: nickm | 2006-10-20 17:04:11 -0400
Oops. Conform to spec. svn:r8782
This commit is contained in:
parent
01bc03eff4
commit
c9a01dea53
@ -2404,9 +2404,15 @@ handle_control_usefeature(control_connection_t *conn,
|
||||
SMARTLIST_FOREACH(args, const char *, arg, {
|
||||
if (!strcasecmp(arg, "VERBOSE_NAMES"))
|
||||
verbose_names = 1;
|
||||
else if (!strcasecmp(arg, "EXTENDED_FORMAT"))
|
||||
else if (!strcasecmp(arg, "EXTENDED_EVENTS")) /* <- documented */
|
||||
extended_events = 1;
|
||||
else {
|
||||
else if (!strcasecmp(arg, "EXTENDED_FORMAT")) {
|
||||
/* remove this in 0.1.2.4; EXTENDED_FORMAT only ever worked for a little
|
||||
* while during 0.1.2.2-alpha-dev. */
|
||||
log_warn(LD_GENERAL,
|
||||
"EXTENDED_FORMAT is deprecated; use EXTENDED_EVENTS instead.");
|
||||
extended_events = 1;
|
||||
} else {
|
||||
connection_printf_to_buf(conn, "552 Unrecognized feature \"%s\"\r\n",
|
||||
arg);
|
||||
bad = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user