Fixed display of one-component-after-root directory

Bug introduced in ece21a668d
It's amazing how many mistakes one person can make in a few hours.
This commit is contained in:
Yorhel 2009-04-26 13:26:20 +02:00
parent 91b131a080
commit 2a5c9a242f

View file

@ -344,13 +344,13 @@ void calc_process() {
strcpy(t->name, orig->name);
} else {
t->name = malloc(strlen(path)+strlen(name)+1);
t->name[0] = 0;
if(strcmp(path, "/"))
strcpy(t->name, path);
if(strcmp(name, ".")) {
strcat(t->name, "/");
strcat(t->name, name);
} else
t->name[0] = 0;
}
}
root = t;
curdev = fs.st_dev;