diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-20 01:02:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-20 01:02:11 +0000 |
commit | 8811fdbdfb93e72a37c76fefb59f19dba1c5d8a8 (patch) | |
tree | b6e639cc794ab53ee68fe511f9e291d108ba2e9b /Build/source/texk/dvipdfmx | |
parent | 9352e2fa3eb4f66dc8cc30533bf5658a99fdac7e (diff) |
(asn_date) [HAVE_TM_GMTOFF]: missing _ in bd_time.
git-svn-id: svn://tug.org/texlive/trunk@2818 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfmx')
-rw-r--r-- | Build/source/texk/dvipdfmx/src/pdfdoc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Build/source/texk/dvipdfmx/src/pdfdoc.c b/Build/source/texk/dvipdfmx/src/pdfdoc.c index 429c62820d4..cc19eb59847 100644 --- a/Build/source/texk/dvipdfmx/src/pdfdoc.c +++ b/Build/source/texk/dvipdfmx/src/pdfdoc.c @@ -492,12 +492,10 @@ asn_date (char *date_string) { #ifndef HAVE_TIMEZONE # ifdef HAVE_TM_GMTOFF -# define timezone (-bdtime->tm_gmtoff) -# elif defined (TM_GM_TOFF) -# define timezone (-bdtime->gm_toff) +# define timezone (-bd_time->tm_gmtoff) # else # define timezone 0l -# endif /* not HAVE_TM_GMTOFF and not TM_GM_TOFF */ +# endif /* not HAVE_TM_GMTOFF */ #endif /* not HAVE_TIMEZONE */ time_t current_time; struct tm *bd_time; |