Pārlūkot izejas kodu

Move a paren 4 characters to the left; fix a bug in OutboundBindAddress

svn:r2330
Nick Mathewson 21 gadi atpakaļ
vecāks
revīzija
9836ccda8c
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/or/connection.c

+ 1 - 1
src/or/connection.c

@@ -493,7 +493,7 @@ int connection_connect(connection_t *conn, char *address, uint32_t addr, uint16_
       log_fn(LOG_WARN,"Outbound bind address '%s' didn't parse. Ignoring.",
              options.OutboundBindAddress);
     } else {
-      if(bind(s, (struct sockaddr*)&ext_addr, sizeof(ext_addr) < 0)) {
+      if(bind(s, (struct sockaddr*)&ext_addr, sizeof(ext_addr)) < 0) {
         log_fn(LOG_WARN,"Error binding network socket: %s",
                tor_socket_strerror(tor_socket_errno(s)));
         return -1;