From 73f19016b904cf377655a6f5b9529d6f99481adc Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 15 Apr 1997 01:16:23 +0000 Subject: [PATCH] * stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not lt->tm_zone. --- libguile/stime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/stime.c b/libguile/stime.c index 90bbde93a..2847c04aa 100644 --- a/libguile/stime.c +++ b/libguile/stime.c @@ -415,7 +415,7 @@ scm_mktime (SCM sbd_time, SCM zone) if (itime != -1) { #ifdef HAVE_TM_ZONE - zname = lt->tm_zone; + zname = lt.tm_zone; #else # ifdef HAVE_TZNAME /* must be copied before calling tzset again. */