mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2024-11-23 00:33:44 +00:00
Fix typo.
This commit is contained in:
parent
b421299884
commit
51088333ed
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ namespace kamokan {
|
|||
|
||||
auto get = cgi_env().query_string_split();
|
||||
const int reason_int = boost::lexical_cast<int>(get["reason"]);
|
||||
ErrorReasons reason_code(ErrorReasons::UnkownReason);
|
||||
ErrorReasons reason_code(ErrorReasons::UnknownReason);
|
||||
if (reason_int >= 0 and reason_int < ErrorReasons::_size())
|
||||
reason_code = ErrorReasons::_from_integral(reason_int);
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace tawashi {
|
|||
PostLengthNotInRange,
|
||||
PastieNotSaved,
|
||||
UserFlooding,
|
||||
UnkownReason,
|
||||
UnknownReason,
|
||||
RedisDisconnected,
|
||||
MissingPostVariable,
|
||||
PastieNotFound,
|
||||
|
|
Loading…
Reference in a new issue