Fixed function conflict

This commit is contained in:
Maxim Biro 2014-01-19 15:27:29 -05:00
parent 500acfce0b
commit d8f2072ab5

View File

@ -273,7 +273,7 @@ next:
// returns 1 on success
// 0 on failure
int is_connected(DHT *dht, int port, int enable_lan_discovery)
int try_connect(DHT *dht, int port, int enable_lan_discovery)
{
uint16_t htons_port = htons(port);
@ -382,7 +382,7 @@ int main(int argc, char *argv[])
return 1;
}
if (is_connected(dht, port, enable_lan_discovery)) {
if (try_connect(dht, port, enable_lan_discovery)) {
syslog(LOG_INFO, "Successfully connected to DHT\n");
} else {
syslog(LOG_ERR, "Couldn't connect to the DHT. Check settings and network connections. Exiting.\n");