Index: trunk/psModules/src/config/pmConfig.c
===================================================================
--- trunk/psModules/src/config/pmConfig.c	(revision 10482)
+++ trunk/psModules/src/config/pmConfig.c	(revision 10483)
@@ -4,6 +4,6 @@
  *  @author EAM (IfA)
  *
- *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-05 04:08:05 $
+ *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-05 22:04:15 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -148,14 +148,17 @@
     // find the first existing entry in the path (starting with the bare name)
     realName = psStringCopy (name);
-    psTrace ("psModules.config", 5, "trying %s\n", realName);
+    psTrace ("psModules.config", 8, "trying %s\n", realName);
 
     int status = stat (realName, &filestat);
     if (status == 0) {
-        if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR))
+        if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR)) {
             goto found;
-        if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP))
+        }
+        if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP)) {
             goto found;
-        if (filestat.st_mode & S_IROTH)
+        }
+        if (filestat.st_mode & S_IROTH) {
             goto found;
+        }
     }
     psFree (realName);
@@ -169,14 +172,17 @@
         realName = psStringCopy (configPath->data[i]);
         psStringAppend (&realName, "/%s", name);
-        psTrace ("psModules.config", 5, "trying %s\n", realName);
+        psTrace ("psModules.config", 8, "trying %s\n", realName);
 
         status = stat (realName, &filestat);
         if (status == 0) {
-            if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR))
+            if ((uid == filestat.st_uid) && (filestat.st_mode & S_IRUSR)) {
                 goto found;
-            if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP))
+            }
+            if ((gid == filestat.st_gid) && (filestat.st_mode & S_IRGRP)) {
                 goto found;
-            if (filestat.st_mode & S_IROTH)
+            }
+            if (filestat.st_mode & S_IROTH) {
                 goto found;
+            }
         }
         psFree (realName);
