~ubuntu-branches/ubuntu/intrepid/ruby1.8/intrepid

« back to all changes in this revision

Viewing changes to time.c

  • Committer: Package Import Robot
  • Author(s): Daigo Moriwaki
  • Date: 2008-06-11 21:08:19 UTC
  • mfrom: (1.1.12) (19.1.1 intrepid)
  • Revision ID: package-import@ubuntu.com-20080611210819-s5kz8n2bri5w68av
Tags: 1.8.7.17-1
* New upstream release.
* removed patches that the upstream has included:
  - debian/patches/201_erb_187_release.dpatch
  - debian/patches/202_delegate_187_release.dpatch
  - debian/patches/203_openssl_ctx_r187_release.dpatch
* debian/watch: it will report 1.8.\d-p\d* versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  time.c -
4
4
 
5
5
  $Author: knu $
6
 
  $Date: 2008-05-31 20:44:49 +0900 (Sat, 31 May 2008) $
 
6
  $Date: 2008-06-06 19:39:57 +0900 (Fri, 06 Jun 2008) $
7
7
  created at: Tue Dec 28 14:31:59 JST 1993
8
8
 
9
9
  Copyright (C) 1993-2003 Yukihiro Matsumoto
759
759
    int utc_p;
760
760
{
761
761
    time_t t;
762
 
    struct tm *tmp, buf;
 
762
#ifdef NEGATIVE_TIME_T
 
763
    struct tm *tmp;
 
764
#endif
 
765
    struct tm buf;
763
766
    buf = *tptr;
764
767
    if (utc_p) {
765
768
#if defined(HAVE_TIMEGM)