summaryrefslogtreecommitdiffstats
path: root/src/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tcp.c')
-rw-r--r--src/tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tcp.c b/src/tcp.c
index 99f8828..bfd49bc 100644
--- a/src/tcp.c
+++ b/src/tcp.c
@@ -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" : "");
}