From: Guenter Knauf Date: Sat, 13 Dec 2014 12:29:59 +0000 (+0100) Subject: synctime.c: fixed timeserver URLs. X-Git-Tag: curl-7_40_0~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e98b7b1cb33f064767258f628959e1ca783b7934;p=thirdparty%2Fcurl.git synctime.c: fixed timeserver URLs. For getting the date header its not necessary to access special pages or even CGI scripts - all pages including the main index reply with the date header, therefore shortened URLs to domain. Removed worldtime.com; added pool.ntp.org. --- diff --git a/docs/examples/synctime.c b/docs/examples/synctime.c index 1cb3f87509..2bbf951fc2 100644 --- a/docs/examples/synctime.c +++ b/docs/examples/synctime.c @@ -104,10 +104,10 @@ typedef struct const char DefaultTimeServer[4][MAX_STRING1] = { - "http://nist.time.gov/timezone.cgi?UTC/s/0", + "http://pool.ntp.org/", + "http://nist.time.gov/", "http://www.google.com/", - "http://www.worldtimeserver.com/current_time_in_UTC.aspx", - "http://www.worldtime.com/cgi-bin/wt.cgi" + "http://www.worldtimeserver.com/" }; const char *DayStr[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};