=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.404 retrieving revision 1.405 diff -u -r1.404 -r1.405 --- src/usr.bin/tmux/tmux.h 2013/03/25 11:41:16 1.404 +++ src/usr.bin/tmux/tmux.h 2013/03/25 11:43:01 1.405 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.404 2013/03/25 11:41:16 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.405 2013/03/25 11:43:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -780,9 +780,6 @@ int fd; struct bufferevent *event; - struct bufferevent *out; - int outdone; - void (*callbackfn)(struct job *); void (*freefn)(void *); void *data; @@ -1614,8 +1611,8 @@ /* job.c */ extern struct joblist all_jobs; -struct job *job_run( - const char *, void (*)(struct job *), void (*)(void *), void *); +struct job *job_run(const char *, struct session *, + void (*)(struct job *), void (*)(void *), void *); void job_free(struct job *); void job_died(struct job *, int);