Remove leftover of fds_in_tail hack

It's breaking the case of multiple fds in one buffer.
This commit is contained in:
Kristian Høgsberg 2010-10-25 10:28:23 -04:00
parent cf2bc67ccd
commit 6866856dfd
2 changed files with 4 additions and 3 deletions

View file

@ -58,7 +58,6 @@ struct wl_closure {
struct wl_connection {
struct wl_buffer in, out;
struct wl_buffer fds_in, fds_out;
int fds_in_tail;
int fd;
void *data;
wl_connection_update_func_t update;
@ -190,7 +189,6 @@ void
wl_connection_consume(struct wl_connection *connection, size_t size)
{
connection->in.tail += size;
connection->fds_in.tail = connection->fds_in_tail;
}
static void