From d37f0130694b520681737876036158c3d7e7edc4 Mon Sep 17 00:00:00 2001 From: 3lswear Date: Sat, 5 Feb 2022 14:10:34 +0300 Subject: [PATCH] fix: typo --- src/Client/Response.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }