diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-02 20:00:11 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-02 20:00:11 +0000 |
commit | 4368740666b3af0f30f07bdc94cbdc3ec5e46ed1 (patch) | |
tree | 9a4cc54ea02487f0e57019df45fd7482878bd8ac /usr.bin/tmux/tmux.h | |
parent | e283f0801e842d8e892c2e0b0ca16639486b1819 (diff) |
Set exittype for error exit as well as the error string.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 9299ca67776..7d36f59a03d 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.96 2009/09/02 17:34:57 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.97 2009/09/02 20:00:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -974,6 +974,7 @@ struct client_ctx { CCTX_EXIT, CCTX_DIED, CCTX_SHUTDOWN, + CCTX_ERROR } exittype; const char *errstr; }; |