From 1bb010e66e37b594192b79f7059cc2d5add3fdbc Mon Sep 17 00:00:00 2001 From: "Andrew V. Samoilov" Date: Tue, 16 Nov 2004 12:50:40 +0000 Subject: [PATCH] Revert last changes --- vfs/vfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vfs/vfs.h b/vfs/vfs.h index bcc45757d..841b46308 100644 --- a/vfs/vfs.h +++ b/vfs/vfs.h @@ -32,8 +32,8 @@ int mc_stat (const char *path, struct stat *buf); int mc_lstat (const char *path, struct stat *buf); int mc_fstat (int fd, struct stat *buf); -int mc_chmod (const char *path, mode_t mode); -int mc_chown (const char *path, uid_t owner, gid_t group); +int mc_chmod (const char *path, int mode); +int mc_chown (const char *path, int owner, int group); int mc_utime (const char *path, struct utimbuf *times); int mc_readlink (const char *path, char *buf, int bufsiz); int mc_unlink (const char *path);