diff --git a/src/Client/Response.cpp b/src/Client/Response.cpp index e254282..7f841b3 100644 --- a/src/Client/Response.cpp +++ b/src/Client/Response.cpp @@ -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); }