Index: /trunk/psModules/src/config/pmConfig.c
===================================================================
--- /trunk/psModules/src/config/pmConfig.c	(revision 10577)
+++ /trunk/psModules/src/config/pmConfig.c	(revision 10578)
@@ -4,6 +4,6 @@
  *  @author EAM (IfA)
  *
- *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-06 20:25:12 $
+ *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-08 22:18:58 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -845,6 +845,11 @@
 
     // strip file:// from front of name
-    if (!strncasecmp (newName, "file://", strlen("file://"))) {
-        psStringSubstitute(&newName, "", "file://");
+    if (!strncasecmp (newName, "file:", strlen("file:"))) {
+        char *point = newName + strlen("file:");
+        while (*point == '/')
+            point ++;
+        char *tmpName = psStringCopy (point);
+        psFree (newName);
+        newName = tmpName;
     }
 
