Explorar el Código

oh, and accept() into the right place, too.

svn:r4029
Roger Dingledine hace 20 años
padre
commit
620419b421
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/or/connection.c

+ 1 - 1
src/or/connection.c

@@ -516,7 +516,7 @@ static int connection_handle_listener_read(connection_t *conn, int new_type) {
   tor_assert(remotelen >= sizeof(struct sockaddr_in));
   memset(addrbuf, 0, sizeof(addrbuf));
 
-  news = accept(conn->s,(struct sockaddr *)&remote,&remotelen);
+  news = accept(conn->s,(struct sockaddr *)&addrbuf,&remotelen);
   if (!SOCKET_IS_POLLABLE(news)) {
     /* accept() error, or too many conns to poll */
     int e;