diff options
author | 2021-02-12 06:52:48 +0000 | |
---|---|---|
committer | 2021-02-12 06:52:48 +0000 | |
commit | 6e7200d4a6ae00c643da278e8bff45119a0427cc (patch) | |
tree | 30e7df9b4d68d1ea6392ff866547dadde385882c /usr.bin/tmux/file.c | |
parent | sftp: add missing lsetstat@openssh.com documentation (diff) | |
download | wireguard-openbsd-6e7200d4a6ae00c643da278e8bff45119a0427cc.tar.xz wireguard-openbsd-6e7200d4a6ae00c643da278e8bff45119a0427cc.zip |
Do not care about the server socket closing if exiting anyway.
Diffstat (limited to 'usr.bin/tmux/file.c')
-rw-r--r-- | usr.bin/tmux/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/file.c b/usr.bin/tmux/file.c index 8c3d7aaface..7a3d86e8816 100644 --- a/usr.bin/tmux/file.c +++ b/usr.bin/tmux/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.9 2021/02/11 09:39:29 nicm Exp $ */ +/* $OpenBSD: file.c,v 1.10 2021/02/12 06:52:48 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -485,7 +485,7 @@ file_write_left(struct client_files *files) size_t left; int waiting = 0; - RB_FOREACH (cf, client_files, files) { + RB_FOREACH(cf, client_files, files) { if (cf->event == NULL) continue; left = EVBUFFER_LENGTH(cf->event->output); |