util/Exception: rename FullMessage() to GetFullMessage()

This commit is contained in:
Max Kellermann
2017-07-05 12:25:55 +02:00
parent bce89feb13
commit 3cfefa53f7
4 changed files with 5 additions and 5 deletions

View File

@@ -147,5 +147,5 @@ void
PrintError(Response &r, std::exception_ptr ep)
{
LogError(ep);
r.Error(ToAck(ep), FullMessage(ep).c_str());
r.Error(ToAck(ep), GetFullMessage(ep).c_str());
}