wesnothd: Fix typo introduced recently causing build errors

Fixes commit 2bf4d68c87.
This commit is contained in:
Iris Morelle 2018-05-13 04:05:23 -04:00
parent ba64a502e1
commit c8c3625e3a

View file

@ -102,7 +102,7 @@ std::string fuh::extract_salt(const std::string& name) {
try {
hash = get_hash(name);
} catch (const rror& e) {
} catch (const error& e) {
ERR_UH << "Could not retrieve hash for user '" << name << "' :" << e.message << std::endl;
return "";
}