From 7e35eb77292fe6464889ddc8329c6a64136f969d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 23 Feb 2018 23:29:01 +0000 Subject: spelling fixes Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334 --- lib/parsedate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/parsedate.c') diff --git a/lib/parsedate.c b/lib/parsedate.c index 23a787fc9..aa27303fc 100644 --- a/lib/parsedate.c +++ b/lib/parsedate.c @@ -433,7 +433,7 @@ static int parsedate(const char *date, time_t *output) tzoff = (val/100 * 60 + val%100)*60; /* the + and - prefix indicates the local time compared to GMT, - this we need ther reversed math to get what we want */ + this we need their reversed math to get what we want */ tzoff = date[-1]=='+'?-tzoff:tzoff; } -- cgit v1.2.1