X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fmain.c;h=cd9c45187354b97bd1d9fa39ca8d0a1ee300534b;hb=3e11c7767641614fbb3fad38fffefa0da9e66919;hp=f072a285e8f033d47318a6ec948bbde3e4fba3fb;hpb=da67fd4fd32d16dcd6b4cb0b63497a9925a2ef35;p=tpg%2Facess2.git diff --git a/Kernel/vfs/main.c b/Kernel/vfs/main.c index f072a285..cd9c4518 100644 --- a/Kernel/vfs/main.c +++ b/Kernel/vfs/main.c @@ -72,8 +72,10 @@ char *VFS_GetTruePath(char *Path) tmp = VFS_GetAbsPath(Path); if(tmp == NULL) return NULL; + Log(" VFS_GetTruePath: tmp = '%s'", tmp); node = VFS_ParsePath(tmp, &ret); free(tmp); + Log(" VFS_GetTruePath: node=%p, ret='%s'", node, ret); if(!node) return NULL; if(node->Close) node->Close(node);