[snip]
 
> JV: An MPE group (PUB in this case) is not an HFS directory object, but
>     is considered a generic directory object.  In fact the listfile code
>     assumes that any HFS dir, group dir, acct dir or root dir is a directory.
>     Here is the code fragment:
>
>         if is_dir(object) and (line[strlen(line)] <> '/') then
>            strappend (line, '/');
>
 
Now I hope that JV retyped rather than pasted this code fragment because it
should be:
                                                  vv
          if is_dir(object) and (line[strlen(line)-1] <> '/') then
             strappend (line, '/');
 
--------------------------------------------------------------------
Ross Scroggs                         email: [log in to unmask]
Telamon, Inc.                          CIS: 76011,2234
492 Ninth Street, Suite 310          voice: 510-987-7700
Oakland, CA 94607-4098                 fax: 510-987-7009
--------------------------------------------------------------------