Browse Source

eloop: Fix EVENT_TYPE_WRITE with poll()-based eloop

This needs to use POLLOUT instead of POLLIN to get the correct event.

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
4be921ac60
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/eloop.c

+ 1 - 1
src/utils/eloop.c

@@ -278,7 +278,7 @@ static int eloop_sock_table_set_fds(struct eloop_sock_table *readers,
 				pollfds_map[fd] = pfd;
 				nxt++;
 			}
-			pfd->events |= POLLIN;
+			pfd->events |= POLLOUT;
 		}
 	}