unix_path in filepath

This commit is contained in:
p.kosyh 2009-09-12 06:57:58 +00:00
parent ce58f7e5a1
commit c3e9439b09

View file

@ -9,6 +9,7 @@ char *getfilepath(const char *d, const char *n)
strcpy(p, d);
strcat(p, "/");
strcat(p, n);
unix_path(p);
}
return p;
}