mirror of
https://github.com/tmux/tmux.git
synced 2025-04-21 11:58:48 +00:00
Consistent error message.
This commit is contained in:
parent
04f4e4219b
commit
8dbccbc4db
5
tmux.c
5
tmux.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tmux.c,v 1.3 2007-08-27 13:45:26 nicm Exp $ */
|
/* $Id: tmux.c,v 1.4 2007-08-27 13:53:55 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -178,6 +178,7 @@ main(int argc, char **argv)
|
|||||||
server_in = buffer_create(BUFSIZ);
|
server_in = buffer_create(BUFSIZ);
|
||||||
server_out = buffer_create(BUFSIZ);
|
server_out = buffer_create(BUFSIZ);
|
||||||
|
|
||||||
|
/* Skip to list function if listing. */
|
||||||
if (op == OP_LIST)
|
if (op == OP_LIST)
|
||||||
main_list(name);
|
main_list(name);
|
||||||
|
|
||||||
@ -545,7 +546,7 @@ process_list(const char *name)
|
|||||||
buffer_read(server_in, &wd, sizeof wd);
|
buffer_read(server_in, &wd, sizeof wd);
|
||||||
hdr.size -= sizeof wd;
|
hdr.size -= sizeof wd;
|
||||||
if (wd.windows == 0 && hdr.size == 0)
|
if (wd.windows == 0 && hdr.size == 0)
|
||||||
errx(1, "session \"%s\" not found", name);
|
errx(1, "session not found: %s", name);
|
||||||
if (hdr.size < wd.windows * sizeof we)
|
if (hdr.size < wd.windows * sizeof we)
|
||||||
errx(1, "bad MSG_WINDOWS size");
|
errx(1, "bad MSG_WINDOWS size");
|
||||||
while (wd.windows-- > 0) {
|
while (wd.windows-- > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user