[Gnucash-changes] change usage of iso8601_to_timespec_local to ..._gmt().

Linas Vepstas linas at cvs.gnucash.org
Sun May 2 17:37:46 EDT 2004


Log Message:
-----------
change usage of iso8601_to_timespec_local to ..._gmt().  The old
routine returned the GMT time. The new routine will return the GMT time.
Thus, this change is a no-op

Modified Files:
--------------
    gnucash/src/engine:
        Transaction.c

Revision Data
-------------
Index: Transaction.c
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/engine/Transaction.c,v
retrieving revision 1.305
retrieving revision 1.306
diff -Lsrc/engine/Transaction.c -Lsrc/engine/Transaction.c -u -r1.305 -r1.306
--- src/engine/Transaction.c
+++ src/engine/Transaction.c
@@ -3095,7 +3095,7 @@
   val = kvp_frame_get_string(tr->inst.kvp_data, void_time_str);
   if(val)
   {
-    void_time = gnc_iso8601_to_timespec_local(val);
+    void_time = gnc_iso8601_to_timespec_gmt(val);
   }
 
   return void_time;


More information about the Gnucash-changes mailing list