From 13ebd5b6b917a576065ad550192d5f2bed8529c3 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Mon, 12 Aug 2019 16:16:17 +0300 Subject: daemon: fix a typo Signed-off-by: Gediminas Jakutis --- src/daemon/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/daemon') diff --git a/src/daemon/net.c b/src/daemon/net.c index 11a6a21..f2b946a 100644 --- a/src/daemon/net.c +++ b/src/daemon/net.c @@ -195,7 +195,7 @@ int net_send_addr(int nd, const char * const buf, size_t buf_size, const struct if (setting_verbose() >= INFO) { clock_gettime(CLOCK_MONOTONIC_RAW, &t); t = rin_time_sub(&t, &state[nd].start_time); - fprintf(stderr, "Sending packet to %s, timestap: %li.%06lis \n", inet_ntoa(state[nd].clientaddr.sin_addr), t.tv_sec, t.tv_nsec / 1000); + fprintf(stderr, "Sending packet to %s, timestamp: %li.%06lis \n", inet_ntoa(state[nd].clientaddr.sin_addr), t.tv_sec, t.tv_nsec / 1000); } sent = sendto( state[nd].sock, buf, buf_size, MSG_DONTWAIT, -- cgit v1.2.3