=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.939 retrieving revision 1.940 diff -c -r1.939 -r1.940 *** src/usr.bin/tmux/tmux.h 2019/12/12 12:49:36 1.939 --- src/usr.bin/tmux/tmux.h 2019/12/16 15:48:50 1.940 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.939 2019/12/12 12:49:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.940 2019/12/16 15:48:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 507,519 **** struct msg_read_open { int stream; int fd; ! char path[PATH_MAX]; ! }; struct msg_read_data { int stream; - size_t size; - char data[BUFSIZ]; }; struct msg_read_done { --- 507,516 ---- struct msg_read_open { int stream; int fd; ! }; /* followed by path */ struct msg_read_data { int stream; }; struct msg_read_done { *************** *** 524,538 **** struct msg_write_open { int stream; int fd; - char path[PATH_MAX]; int flags; ! }; struct msg_write_data { int stream; ! size_t size; ! char data[BUFSIZ]; ! }; struct msg_write_ready { int stream; --- 521,532 ---- struct msg_write_open { int stream; int fd; int flags; ! }; /* followed by path */ struct msg_write_data { int stream; ! }; /* followed by data */ struct msg_write_ready { int stream;