Index: trunk/psLib/src/astro/psEarthOrientation.c
===================================================================
--- trunk/psLib/src/astro/psEarthOrientation.c	(revision 8776)
+++ trunk/psLib/src/astro/psEarthOrientation.c	(revision 9665)
@@ -8,6 +8,6 @@
  *  @author Robert Daniel DeSonia, MHPCC
  *
- *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-09-08 02:33:23 $
+ *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-10-20 00:17:21 $
  *
  *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
@@ -756,5 +756,5 @@
     PS_ASSERT_PTR_NON_NULL(time,NULL);
     //Create a copy of the input time that can be manipulated/changed (input time is const).
-    psTime *in = p_psTimeCopy(time);
+    psTime *in = psTimeCopy(time);
     if (in->type != PS_TIME_UT1) {
         in = psTimeConvert(in, PS_TIME_UT1);
@@ -1301,10 +1301,10 @@
             from = psTimeFromMJD(fromMJD);
         } else {
-            from = p_psTimeCopy(fromTime);
+            from = psTimeCopy(fromTime);
         }
         if (toTime == NULL) {
             to = psTimeFromMJD(toMJD);
         } else {
-            to = p_psTimeCopy(toTime);
+            to = psTimeCopy(toTime);
         }
         //Calculate the earthpoles and quaternions corresponding to each time (from, to).
@@ -1334,10 +1334,10 @@
             from = psTimeFromMJD(fromMJD);
         } else {
-            from = p_psTimeCopy(fromTime);
+            from = psTimeCopy(fromTime);
         }
         if (toTime == NULL) {
             to = psTimeFromMJD(toMJD);
         } else {
-            to = p_psTimeCopy(toTime);
+            to = psTimeCopy(toTime);
         }
         //Calculate the earthpoles and quaternions corresponding to each time (from, to).
@@ -1376,10 +1376,10 @@
             from = psTimeFromMJD(fromMJD);
         } else {
-            from = p_psTimeCopy(fromTime);
+            from = psTimeCopy(fromTime);
         }
         if (toTime == NULL) {
             to = psTimeFromMJD(toMJD);
         } else {
-            to = p_psTimeCopy(toTime);
+            to = psTimeCopy(toTime);
         }
 
