diff options
author | Guenter Knauf <lists@gknw.net> | 2014-12-13 13:43:19 +0100 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2014-12-13 13:43:19 +0100 |
commit | 157c9752d58d5c2de9b9211147686a1043904e80 (patch) | |
tree | f26e2cfec227a4baced05078de3935b86e3ced58 /docs/examples/synctime.c | |
parent | e98b7b1cb33f064767258f628959e1ca783b7934 (diff) | |
download | curl-157c9752d58d5c2de9b9211147686a1043904e80.tar.gz |
synctime.c: removed another timeserver URL.
worldtimeserver.com seems also no longer available.
Diffstat (limited to 'docs/examples/synctime.c')
-rw-r--r-- | docs/examples/synctime.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/examples/synctime.c b/docs/examples/synctime.c index 2bbf951fc..c9565d4af 100644 --- a/docs/examples/synctime.c +++ b/docs/examples/synctime.c @@ -102,12 +102,11 @@ typedef struct char timeserver[MAX_STRING1]; } conf_t; -const char DefaultTimeServer[4][MAX_STRING1] = +const char DefaultTimeServer[3][MAX_STRING1] = { "http://pool.ntp.org/", "http://nist.time.gov/", - "http://www.google.com/", - "http://www.worldtimeserver.com/" + "http://www.google.com/" }; const char *DayStr[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |