X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fopen.c;h=655272eff01f5d125c22f968559ae7a540f4cec2;hb=38e4b28d370c5f9284b285a71518ae2b6bce125c;hp=05f7d2957a1dee1d04d0ad848e48c9d6344669f6;hpb=243bdab4e7acc8516d9b1c138f45dc1195f97767;p=tpg%2Facess2.git diff --git a/Kernel/vfs/open.c b/Kernel/vfs/open.c index 05f7d295..655272ef 100644 --- a/Kernel/vfs/open.c +++ b/Kernel/vfs/open.c @@ -550,17 +550,16 @@ void VFS_Close(int FD) } /** - * \fn int VFS_ChDir(char *New) * \brief Change current working directory */ -int VFS_ChDir(char *New) +int VFS_ChDir(char *Dest) { char *buf; int fd; tVFS_Handle *h; // Create Absolute - buf = VFS_GetAbsPath(New); + buf = VFS_GetAbsPath(Dest); if(buf == NULL) { Log("VFS_ChDir: Path expansion failed"); return -1;