Index: trunk/psLib/src/astro/psTime.c
===================================================================
--- trunk/psLib/src/astro/psTime.c	(revision 4937)
+++ trunk/psLib/src/astro/psTime.c	(revision 4944)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.68 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-08-31 22:28:35 $
+ *  @version $Revision: 1.69 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-02 21:32:03 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -1360,5 +1360,6 @@
 }
 
-psTime* psTimeFromISO(const char *input)
+psTime* psTimeFromISO(const char *input,
+                      psTimeType type)
 {
     psS32 millisecond;
@@ -1391,4 +1392,5 @@
     outTime = p_psTimeFromTM(&tmTime);
     outTime->nsec = millisecond * 1000000;
+    outTime->type = type;
 
     return outTime;
Index: trunk/psLib/src/astro/psTime.h
===================================================================
--- trunk/psLib/src/astro/psTime.h	(revision 4937)
+++ trunk/psLib/src/astro/psTime.h	(revision 4944)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-08-31 22:28:35 $
+ *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-02 21:32:03 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -281,5 +281,6 @@
  */
 psTime* psTimeFromISO(
-    const char* input                  ///< Input time to be converted.
+    const char* input,                 ///< Input time to be converted.
+    psTimeType type                    ///< Time type.
 );
 
