Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4406)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4407)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.152 2005-06-23 21:19:45 price Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.153 2005-06-28 19:23:35 price Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -743,3 +743,5 @@
   \code{psAlloc} checks the allocation size against
   \code{PS_MEM_LIMIT}.
-\end{itemize}
+\item \code{nFail} in \code{psMetadataConfigParse} is \code{unsigned}.
+\item \code{timeval} changed to \code{struct timeval} throughout.
+\end{itemize}
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 4406)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 4407)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.300 2005-06-28 01:40:27 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.301 2005-06-28 19:23:35 price Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -2575,5 +2575,5 @@
 
 \begin{prototype}
-psMetadata *psMetadataConfigParse(psMetadata *md, int *nFail, const char *filename, bool overwrite);
+psMetadata *psMetadataConfigParse(psMetadata *md, unsigned int *nFail, const char *filename, bool overwrite);
 \end{prototype}
 
@@ -5604,8 +5604,9 @@
 \subsubsection{Overview}
 
-We require a collection of functions to manipulate time data.  These operations
-primarily consist of conversions between specific time formats.  Internally,
-PSLib handles times as a structure similar to the POSIX \code{timeval} struct
-which has been extended to track the time system being represented.  
+We require a collection of functions to manipulate time data.  These
+operations primarily consist of conversions between specific time
+formats.  Internally, PSLib handles times as a structure similar to
+the POSIX \code{struct timeval} struct which has been extended to
+track the time system being represented.
 
 \subsubsection{Data Types}
@@ -5613,8 +5614,8 @@
 \begin{datatype}
 typedef enum {
-    PS_TIME_TAI,                    ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds
-    PS_TIME_UTC,                    ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds + leapseconds
-    PS_TIME_UT1,                    ///< seconds since 1970-01-01T00:00:00Z (Gregorian), variable length seconds
-    PS_TIME_TT,                     ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds
+    PS_TIME_TAI,      ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds
+    PS_TIME_UTC,      ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds + leapseconds
+    PS_TIME_UT1,      ///< seconds since 1970-01-01T00:00:00Z (Gregorian), variable length seconds
+    PS_TIME_TT,       ///< seconds since 1970-01-01T00:00:00Z (Gregorian), SI seconds
 } psTimeType;
 
@@ -5718,5 +5719,5 @@
 double psTimeToMJD(const psTime *time);
 psString psTimeToISO(const psTime *time);
-timeval *psTimeToTimeval(const psTime *time);
+struct timeval *psTimeToTimeval(const psTime *time);
 \end{prototype}
 
@@ -5734,5 +5735,5 @@
 psTime *psTimeFromMJD(double mjd);
 psTime *psTimeFromISO(const char *input, psTimeType type);
-psTime *psTimeFromTimeval(const timeval *input);
+psTime *psTimeFromTimeval(const struct timeval *input);
 psTime *psTimeFromUTC(psS64 sec, psU32 nsec, bool leapsecond);
 psTime *psTimeFromTT(psS64 sec, psU32 nsec);
