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

svn:r2330
This commit is contained in:
Nick Mathewson 2004-09-02 23:25:23 +00:00
parent ecf414f05e
commit 9836ccda8c

View File

@ -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;