diff options
-rw-r--r-- | src/svn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svn.cpp b/src/svn.cpp index 3f06af7..489ef14 100644 --- a/src/svn.cpp +++ b/src/svn.cpp @@ -349,7 +349,7 @@ time_t get_epoch(char *svn_date) memset(&tm, 0, sizeof tm); QByteArray date(svn_date, strlen(svn_date) - 8); strptime(date, "%Y-%m-%dT%H:%M:%S", &tm); - return mktime(&tm); + return timegm(&tm); } class SvnRevision |