Index: trunk/psLib/src/sysUtils/psTrace.c
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.c	(revision 1385)
+++ trunk/psLib/src/sysUtils/psTrace.c	(revision 1393)
@@ -9,6 +9,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-04 23:37:39 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-05 19:38:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -92,5 +92,5 @@
 {
     if (p_psCroot == NULL) {
-        p_psCroot = componentAlloc(".", DEFAULT_TRACE_LEVEL);
+        p_psCroot = componentAlloc(".", PS_DEFAULT_TRACE_LEVEL);
     }
 }
@@ -248,5 +248,5 @@
 
     if (NULL == currentNode) {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -256,5 +256,5 @@
 
     if (aname[0] != '.') {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -278,5 +278,5 @@
         }
     }
-    return(UNKNOWN_TRACE_LEVEL);
+    return(PS_UNKNOWN_TRACE_LEVEL);
 }
 
@@ -297,5 +297,5 @@
 {
     if (p_psCroot == NULL) {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -324,7 +324,7 @@
     if (comp->name[0] == '\0') {
         printf("%*s%-*s %d\n", depth, "", 20 - depth,
-               "(root)", (comp->level == UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
+               "(root)", (comp->level == PS_UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
     } else {
-        if (comp->level == UNKNOWN_TRACE_LEVEL) {
+        if (comp->level == PS_UNKNOWN_TRACE_LEVEL) {
             printf("%*s%-*s %s\n", depth, "", 20 - depth,
                    comp->name, ".");
