--- BasiliskII/src/extfs.cpp 1999/10/21 22:39:51 1.5 +++ BasiliskII/src/extfs.cpp 1999/10/22 15:08:10 1.6 @@ -211,7 +211,9 @@ static void add_path_comp(const char *s) static void get_path_for_fsitem(FSItem *p) { - if (p->id == ROOT_ID) { + if (p->id == ROOT_PARENT_ID) { + full_path[0] = 0; + } else if (p->id == ROOT_ID) { strncpy(full_path, RootPath, MAX_PATH_LENGTH-1); full_path[MAX_PATH_LENGTH-1] = 0; } else {