diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-02-08 23:36:16 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-02-08 23:36:16 +0000 |
commit | a096d1b1b70cedfd1e599c52fdee7c1401a5c76c (patch) | |
tree | f15f2946e7d1694a0e92ca5df4addca986e4f40b /coreutils | |
parent | e16b52cf97bbf3785ffe7b395b27469688b31376 (diff) | |
download | busybox-w32-a096d1b1b70cedfd1e599c52fdee7c1401a5c76c.tar.gz busybox-w32-a096d1b1b70cedfd1e599c52fdee7c1401a5c76c.tar.bz2 busybox-w32-a096d1b1b70cedfd1e599c52fdee7c1401a5c76c.zip |
Patch from mathuria, compatability with solaris
git-svn-id: svn://busybox.net/trunk/busybox@6539 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index 846e27c20..4e766a90b 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c | |||
@@ -35,7 +35,7 @@ | |||
35 | static long uid; | 35 | static long uid; |
36 | static long gid; | 36 | static long gid; |
37 | 37 | ||
38 | static int (*chown_func)(const char *, __uid_t, __gid_t) = chown; | 38 | static int (*chown_func)(const char *, uid_t, gid_t) = chown; |
39 | 39 | ||
40 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | 40 | static int fileAction(const char *fileName, struct stat *statbuf, void* junk) |
41 | { | 41 | { |