Index: trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- trunk/psLib/src/sys/psLogMsg.c	(revision 1441)
+++ trunk/psLib/src/sys/psLogMsg.c	(revision 1448)
@@ -12,6 +12,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-10 01:55:34 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -89,5 +89,5 @@
  An integer specifying the old log destination.
  *****************************************************************************/
-int psLogSetDestination(const char *dest)
+bool psLogSetDestination(const char *dest)
 {
     char protocol[5];
@@ -104,10 +104,10 @@
         }
         logDest = NULL;
-        return 0;
+        return true;
     }
 
     if (sscanf(dest, "%4s:%256s", protocol, location) < 2) {
         psError(__func__, "The specified destination, %s, is malformed.", dest);
-        return 1;
+        return false;
     }
 
@@ -118,5 +118,5 @@
             }
             logDest = stderr;
-            return 0;
+            return true;
         }
         if (strcmp(location, "stdout") == 0) {
@@ -125,5 +125,5 @@
             }
             logDest = stdout;
-            return 0;
+            return true;
         }
         psError(__func__, "The location, %s, for protocol 'dest' is invalid.", location);
@@ -134,5 +134,5 @@
         if (file == NULL) {
             psError(__func__, "Could not open file '%s' for output.", location);
-            return 1;
+            return false;
         }
         if (logDest != NULL && logDest != stderr && logDest != stdout) {
@@ -140,9 +140,9 @@
         }
         logDest = file;
-        return 0;
+        return true;
     }
 
     psError(__func__, "Do not know how to handle the protocol '%s'.", protocol);
-    return 1;
+    return false;
 }
 
