summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server-client.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-09-01 19:50:09 +0000
committernicm <nicm@openbsd.org>2015-09-01 19:50:09 +0000
commitbd33b72005413ba543b8cb91f4c432c37c8fb42c (patch)
treed2b4f96a7bd0688c10a7d573d3c559cde5e22f4f /usr.bin/tmux/server-client.c
parentLog the whole new input buffer once rather than each byte. (diff)
downloadwireguard-openbsd-bd33b72005413ba543b8cb91f4c432c37c8fb42c.tar.xz
wireguard-openbsd-bd33b72005413ba543b8cb91f4c432c37c8fb42c.zip
Tweak some error messages/comments.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r--usr.bin/tmux/server-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c
index 61bffec2382..431eb3c31a3 100644
--- a/usr.bin/tmux/server-client.c
+++ b/usr.bin/tmux/server-client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server-client.c,v 1.151 2015/08/30 15:43:40 nicm Exp $ */
+/* $OpenBSD: server-client.c,v 1.152 2015/09/01 19:50:09 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1060,7 +1060,7 @@ server_client_msg_dispatch(struct client *c)
s = c->session;
if (gettimeofday(&c->activity_time, NULL) != 0)
- fatal("gettimeofday");
+ fatal("gettimeofday failed");
if (s != NULL)
session_update_activity(s, &c->activity_time);