~ubuntu-branches/ubuntu/karmic/gpscorrelate/karmic

« back to all changes in this revision

Viewing changes to unixtime.c

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2007-02-25 11:01:37 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070225110137-1kj1l90u6wuou91k
Tags: 1.5-1
* new upstream release
  - better input handling from .gpx files (Closes: #404648)
* debian/control
  - added XS-Vcs-Browser field
* debian/svn-deblayout
  - added, with default URL for the tags dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
         * and the least significant on the right:
42
42
         * ie, Year on the left, seconds on the right. */
43
43
 
 
44
        /* Sanity check... */
 
45
        if (StringTime == NULL || Format == NULL)
 
46
        {
 
47
                return 0;
 
48
        }
 
49
 
44
50
        /* Define and set up our structure. */
45
51
        struct tm Time;
46
52
        Time.tm_wday = 0;