diff options
Diffstat (limited to '')
-rw-r--r-- | src/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ void intentions (struct torrent * t) { if (t->state & outgoing) (*t->dht->pollfds)[i].events |= POLLOUT; } - fprintf(stderr, "peer's intentions: "); + fprintf(stderr, "tcp intentions: "); peer_print(stderr, t->dl); fprintf(stderr, " nfds=%ld, pollfds=%zu%s%s\n", *t->dht->nfds, *t->dht->pollfds_size, (t->state & incoming) ? " reading" : "", (t->state & outgoing) ? " writing" : ""); } |