Fix indentation

This commit is contained in:
Will Storey 2019-10-12 15:37:49 -07:00
commit 4476fbbad9
2 changed files with 4 additions and 4 deletions

View file

@ -181,7 +181,7 @@ server_connect_copy_skeleton(SERVER_CONNECT_REC *src, int connect_info)
dest->tag = g_strdup(src->tag);
if (connect_info) {
dest->family = src->family;
dest->family = src->family;
dest->address = g_strdup(src->address);
dest->port = src->port;
dest->password = g_strdup(src->password);
@ -293,7 +293,7 @@ static void sig_reconnect(SERVER_REC *server)
(!rec->last_connect || !rec->last_failed ||
rec->last_connect < now-FAILED_RECONNECT_WAIT)) {
if (rec == sserver)
conn->port = server->connrec->port;
conn->port = server->connrec->port;
sserver_connect(rec, conn);
return;
}