aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-08 23:36:16 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-08 23:36:16 +0000
commita096d1b1b70cedfd1e599c52fdee7c1401a5c76c (patch)
treef15f2946e7d1694a0e92ca5df4addca986e4f40b /coreutils
parente16b52cf97bbf3785ffe7b395b27469688b31376 (diff)
downloadbusybox-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.c2
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 @@
35static long uid; 35static long uid;
36static long gid; 36static long gid;
37 37
38static int (*chown_func)(const char *, __uid_t, __gid_t) = chown; 38static int (*chown_func)(const char *, uid_t, gid_t) = chown;
39 39
40static int fileAction(const char *fileName, struct stat *statbuf, void* junk) 40static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
41{ 41{