From 0742e50134bfc3db08895c020a940a62e5036cfb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 30 Aug 1999 20:15:06 +0000 Subject: Update. 1999-08-30 Ulrich Drepper * stdlib/tst-environ.c: Add cast to avoid warning. * timezone/test-tz.c: Use setenv instead of putenv. --- timezone/test-tz.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'timezone') diff --git a/timezone/test-tz.c b/timezone/test-tz.c index 6a330a5..28e1e37 100644 --- a/timezone/test-tz.c +++ b/timezone/test-tz.c @@ -7,11 +7,11 @@ struct { const char * env; time_t expected; } tests[] = { - {"TZ=MST", 832935315}, - {"TZ=", 832910115}, - {"TZ=:UTC", 832910115}, - {"TZ=UTC", 832910115}, - {"TZ=UTC0", 832910115} + {"MST", 832935315}, + {"", 832910115}, + {":UTC", 832910115}, + {"UTC", 832910115}, + {"UTC0", 832910115} }; @@ -34,7 +34,7 @@ main (int argc, char ** argv) for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) { - putenv (tests[i].env); + setenv ("TZ", tests[i].env); t = mktime (&tm); if (t != tests[i].expected) { -- cgit v1.1