Skip to content

Commit

Permalink
Fix a couple of "log" message typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
sphery committed Mar 9, 2011
1 parent 28c30ec commit 03e1242
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmyth/mythcontext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ void MythContextPrivate::LoadDatabaseSettings(void)
m_DBparams.wolEnabled = false;
m_DBparams.wolReconnect = 0;
m_DBparams.wolRetry = 5;
m_DBparams.wolCommand = "echo 'WOLsqlServerCommand not set'";
m_DBparams.wolCommand = "echo 'WOLsqlCommand not set'";
gCoreContext->GetDB()->SetDatabaseParams(m_DBparams);
}

Expand Down Expand Up @@ -635,7 +635,7 @@ bool MythContextPrivate::WriteSettingsFile(const DatabaseParams &params,
if (params.wolEnabled)
s << "WOLsqlCommand=" << params.wolCommand << endl;
else
s << "#WOLsqlCommand=echo 'WOLsqlServerCommand not set'\n";
s << "#WOLsqlCommand=echo 'WOLsqlCommand not set'\n";

f->close();
return true;
Expand Down

0 comments on commit 03e1242

Please sign in to comment.