move lchown/chown define out of specific files and into platform.h where it belongs

This commit is contained in:
Mike Frysinger
2006-07-20 19:31:07 +00:00
parent eea561871b
commit 8840759c61
2 changed files with 7 additions and 6 deletions

View File

@@ -16,11 +16,6 @@
#include <unistd.h>
#include "busybox.h"
/* Don't use lchown glibc older then 2.1.x */
#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
#define lchown chown
#endif
static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
{
if (lchown(fileName, statbuf->st_uid, *((long *) junk)) == 0) {