fix: typo

This commit is contained in:
3lswear
2022-02-05 14:10:34 +03:00
parent 6858aa160a
commit d37f013069

View File

@@ -66,7 +66,7 @@ std::string Response::getTime(void)
gettimeofday(&currTime, NULL);
t = gmtime(&currTime.tv_sec);
strftime(buff, 1337, "%a, %d %b %Y %H:%M:%S GTM", t);
strftime(buff, 1337, "%a, %d %b %Y %H:%M:%S GMT", t);
return (buff);
}