From bf1076080ba80dd1057ae0b51891e6ed8e28667c Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 26 Apr 2018 14:21:02 +0930 Subject: [PATCH] common: typo fix. Old gossip is rarely interesting. Reported-by: @ZmnSCPxj Signed-off-by: Rusty Russell --- common/read_peer_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/read_peer_msg.c b/common/read_peer_msg.c index a90952fd6..03fa05b03 100644 --- a/common/read_peer_msg.c +++ b/common/read_peer_msg.c @@ -60,7 +60,7 @@ void handle_gossip_msg_(const u8 *msg TAKES, int peer_fd, if (!send_msg(cs, peer_fd, gossip, arg)) io_error(arg); } else if (fromwire_peektype(gossip) == WIRE_ERROR) { - status_debug("Gossipd old us to send error"); + status_debug("Gossipd told us to send error"); send_msg(cs, peer_fd, gossip, arg); io_error(arg); } else {