Index: trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- trunk/psLib/src/sysUtils/psLogMsg.c	(revision 4321)
+++ trunk/psLib/src/sysUtils/psLogMsg.c	(revision 4367)
@@ -12,6 +12,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-20 22:42:30 $
+ *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-23 03:50:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -87,5 +87,5 @@
  An psBool: TRUE if successful.
  *****************************************************************************/
-psBool psLogSetDestination(const char *dest)
+bool psLogSetDestination(const char *dest)
 {
     char protocol[5];
@@ -163,5 +163,5 @@
     NULL.
  *****************************************************************************/
-void psLogSetFormat(const char *fmt)
+void psLogSetFormat(const char *format)
 {
     // assume none.
@@ -173,16 +173,16 @@
 
     // if fmt is NULL, no logging is desired.
-    if (fmt == NULL) {
+    if (format == NULL) {
         return;
     }
 
     // XXX: What is the purpose of this conditional.
-    if (strlen(fmt) == 0) {
-        fmt = "THLNM";
+    if (strlen(format) == 0) {
+        format = "THLNM";
     }
     // Step through each character in the format string.  For each letter
     // in that string, set the appropriate logging.
 
-    for (const char *ptr = fmt; *ptr != '\0'; ptr++) {
+    for (const char *ptr = format; *ptr != '\0'; ptr++) {
         switch (*ptr) {
         case 'H':
@@ -215,5 +215,5 @@
     // XXX: If one must at least log error messages, why don't we set logMsg = true here?
     if (!logMsg) {
-        psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", fmt);
+        psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", format);
     }
 }
