Prechádzať zdrojové kódy

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

svn:r4029
Roger Dingledine 20 rokov pred
rodič
commit
620419b421
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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;