Skip to content

Commit

Permalink
Correct bad copy/paste in ServerPool.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerrp committed Jul 18, 2012
1 parent 65faa48 commit ec2ac41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythbase/serverpool.cpp
Expand Up @@ -229,7 +229,7 @@ void ServerPool::SelectDefaultListen(bool force)
LOG(VB_GENERAL, LOG_DEBUG,
QString("Adding link-local '%1' to address list.")
.arg(ip.toString()));
naList_4.append(*qnai);
naList_6.append(*qnai);
}

else if (config_v6.isNull())
Expand All @@ -243,7 +243,7 @@ void ServerPool::SelectDefaultListen(bool force)
QString("Adding '%1' to address list.")
.arg(PRETTYIP_(ip)));

naList_4.append(*qnai);
naList_6.append(*qnai);
}

else
Expand Down

0 comments on commit ec2ac41

Please sign in to comment.