diff options
-rw-r--r-- | src/daemon/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |