proc_send_s now seems unnecessary.

This commit is contained in:
nicm
2017-07-12 09:07:52 +00:00
parent 58b796608f
commit d0d42dc4cb
4 changed files with 3 additions and 10 deletions

6
proc.c
View File

@ -161,12 +161,6 @@ proc_send(struct tmuxpeer *peer, enum msgtype type, int fd, const void *buf,
return (0);
}
int
proc_send_s(struct tmuxpeer *peer, enum msgtype type, const char *s)
{
return (proc_send(peer, type, -1, s, strlen(s) + 1));
}
struct tmuxproc *
proc_start(const char *name, struct event_base *base, int forkflag,
void (*signalcb)(int))