Kernel - Fixed up a lack of const-ness
authorJohn Hodge <[email protected]>
Sat, 2 Jul 2011 04:37:09 +0000 (12:37 +0800)
committerJohn Hodge <[email protected]>
Sat, 2 Jul 2011 04:37:09 +0000 (12:37 +0800)
Kernel/include/vfs_ext.h
Kernel/vfs/open.c

index 5e6b77d..ec3e0f6 100644 (file)
@@ -167,14 +167,14 @@ extern int        VFS_GetACL(int FD, tVFS_ACL *Dest);
  * \param Dest New working directory (either absolute or relative to the current)
  * \return Boolean Success
  */
-extern int     VFS_ChDir(char *Dest);
+extern int     VFS_ChDir(const char *Dest);
 /**
  * \brief Change the current virtual root for the user
  * \param New New virtual root (same as ::VFS_ChDir but cannot go
  *            above the current virtual root)
  * \return Boolean success
  */
-extern int     VFS_ChRoot(char *New);
+extern int     VFS_ChRoot(const char *New);
 
 /**
  * \brief Change the location of the current file pointer
index 600cedc..5d1d9fa 100644 (file)
@@ -611,7 +611,7 @@ void VFS_Close(int FD)
 /**
  * \brief Change current working directory
  */
-int VFS_ChDir(char *Dest)
+int VFS_ChDir(const char *Dest)
 {
        char    *buf;
         int    fd;
@@ -657,7 +657,7 @@ int VFS_ChDir(char *Dest)
  * \fn int VFS_ChRoot(char *New)
  * \brief Change current root directory
  */
-int VFS_ChRoot(char *New)
+int VFS_ChRoot(const char *New)
 {
        char    *buf;
         int    fd;

UCC git Repository :: git.ucc.asn.au