mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Merge branch 'tor-gitlab/mr/583' into maint-0.4.7
This commit is contained in:
commit
dc7902ed55
2 changed files with 5 additions and 2 deletions
3
changes/bug40620
Normal file
3
changes/bug40620
Normal file
|
@ -0,0 +1,3 @@
|
|||
o Minor bugfixes (relay, logging):
|
||||
- Demote a harmless XOFF log message to from notice level to info level.
|
||||
Fixes bug 40620; bugfix on 0.4.7.5-alpha.
|
|
@ -644,8 +644,8 @@ connection_start_reading,(connection_t *conn))
|
|||
if (CONN_IS_EDGE(conn) && TO_EDGE_CONN(conn)->xoff_received) {
|
||||
/* We should not get called here if we're waiting for an XON, but
|
||||
* belt-and-suspenders */
|
||||
log_notice(LD_NET,
|
||||
"Request to start reading on an edgeconn blocked with XOFF");
|
||||
log_info(LD_NET,
|
||||
"Request to start reading on an edgeconn blocked with XOFF");
|
||||
return;
|
||||
}
|
||||
if (event_add(conn->read_event, NULL))
|
||||
|
|
Loading…
Add table
Reference in a new issue