Browse Source

Fix a typo #642

pull/652/head
Max Lv 9 years ago
parent
commit
f1464caca7
1 changed files with 1 additions and 1 deletions
  1. 2
      src/server.c

2
src/server.c

@ -488,7 +488,7 @@ static remote_t *connect_to_remote(struct addrinfo *res,
return NULL; return NULL;
} }
*connected = r != 0;
*connected = r == 0;
} }
return remote; return remote;

Loading…
Cancel
Save