Index: trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- trunk/psLib/src/sys/psLogMsg.c	(revision 7588)
+++ trunk/psLib/src/sys/psLogMsg.c	(revision 7594)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-06-17 01:19:39 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-06-17 02:09:54 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -23,4 +23,5 @@
 #include <stdio.h>
 #include <string.h>
+#include <strings.h>
 #include <stdarg.h>
 #include <time.h>
@@ -180,14 +181,14 @@
 {
     // No destination
-    if (dest == NULL || strcmp(dest, "none") == 0) {
+    if (dest == NULL || strcasecmp(dest, "none") == 0) {
         return 0;
     }
 
     // Special destinations: stdout, stderr
-    if (strcmp(dest, "stdout") == 0) {
+    if (strcasecmp(dest, "stdout") == 0) {
         logFD = STDOUT_FILENO;
         return STDOUT_FILENO;
     }
-    if (strcmp(dest, "stderr") == 0) {
+    if (strcasecmp(dest, "stderr") == 0) {
         logFD = STDERR_FILENO;
         return STDERR_FILENO;
@@ -204,5 +205,5 @@
     const char *location = psListGet(protocolLocation, PS_LIST_TAIL); // The location
 
-    if (strcmp(protocol, "file") == 0) {
+    if (strcasecmp(protocol, "file") == 0) {
         //        FILE *file = fopen(location, "w");
         int fileD = creat(location, 0666);
