Skip to content

Commit

Permalink
Fix typo in deadlocked log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
sphery committed May 14, 2012
1 parent eba3a5b commit 1b5a7a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/mythcorecontext.cpp
Expand Up @@ -1151,7 +1151,7 @@ bool MythCoreContext::CheckProtoVersion(MythSocket *socket, uint timeout_ms,
LOG(VB_GENERAL, LOG_CRIT, "Protocol version check failure.\n\t\t\t"
"The response to MYTH_PROTO_VERSION was empty.\n\t\t\t"
"This happens when the backend is too busy to respond,\n\t\t\t"
"or has deadlocked in due to bugs or hardware failure.");
"or has deadlocked due to bugs or hardware failure.");

return false;
}
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/mythsocket.cpp
Expand Up @@ -871,7 +871,7 @@ bool MythSocket::Validate(uint timeout_ms, bool error_dialog_desired)
LOG(VB_GENERAL, LOG_ERR, "Protocol version check failure.\n\t\t\t"
"The response to MYTH_PROTO_VERSION was empty.\n\t\t\t"
"This happens when the backend is too busy to respond,\n\t\t\t"
"or has deadlocked in due to bugs or hardware failure.");
"or has deadlocked due to bugs or hardware failure.");
return false;
}
else if (strlist[0] == "REJECT" && strlist.size() >= 2)
Expand Down

0 comments on commit 1b5a7a9

Please sign in to comment.