=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.266 retrieving revision 1.267 diff -c -r1.266 -r1.267 *** src/usr.bin/tmux/tmux.h 2011/01/15 00:16:00 1.266 --- src/usr.bin/tmux/tmux.h 2011/01/23 11:03:43 1.267 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.266 2011/01/15 00:16:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.267 2011/01/23 11:03:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 383,390 **** * Don't forget to bump PROTOCOL_VERSION if any of these change! */ struct msg_command_data { ! pid_t pid; /* pid from $TMUX or -1 */ ! u_int idx; /* index from $TMUX */ int argc; char argv[COMMAND_LENGTH]; --- 383,390 ---- * Don't forget to bump PROTOCOL_VERSION if any of these change! */ struct msg_command_data { ! pid_t pid; /* PID from $TMUX or -1 */ ! int idx; /* index from $TMUX or -1 */ int argc; char argv[COMMAND_LENGTH]; *************** *** 1301,1307 **** extern int login_shell; extern char *environ_path; extern pid_t environ_pid; ! extern u_int environ_idx; void logfile(const char *); const char *getshell(void); int checkshell(const char *); --- 1301,1307 ---- extern int login_shell; extern char *environ_path; extern pid_t environ_pid; ! extern int environ_idx; void logfile(const char *); const char *getshell(void); int checkshell(const char *);