Larry noticed that chown and chgrp has the version numbers off a bit
authorEric Andersen <andersen@codepoet.org>
Wed, 25 Apr 2001 17:12:33 +0000 (17:12 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 25 Apr 2001 17:12:33 +0000 (17:12 -0000)
for glibc's lchown support.  Thanks Larry.

chgrp.c
chown.c
coreutils/chgrp.c
coreutils/chown.c

diff --git a/chgrp.c b/chgrp.c
index c6312a7e496cff4a0d60f4a22b6ea9eabb303b6a..0bb1e75c97f8340656bb8f6ad8d15ec676e97326 100644 (file)
--- a/chgrp.c
+++ b/chgrp.c
@@ -29,7 +29,7 @@
 #include "busybox.h"
 
 /* Don't use lchown for libc5 or glibc older then 2.1.x */
-#if (__GLIBC__ < 2) && (__GLIBC_MINOR__ < 1)
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
 #define lchown chown
 #endif
 
diff --git a/chown.c b/chown.c
index b6059d048286a0f3ac7ae54059177b4568dd0da9..ff935a4c056302c7f9415b8f72524facff73bcf3 100644 (file)
--- a/chown.c
+++ b/chown.c
@@ -29,7 +29,7 @@
 #include "busybox.h"
 
 /* Don't use lchown for libc5 or glibc older then 2.1.x */
-#if (__GLIBC__ < 2) && (__GLIBC_MINOR__ < 1)
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
 #define lchown chown
 #endif
 
index c6312a7e496cff4a0d60f4a22b6ea9eabb303b6a..0bb1e75c97f8340656bb8f6ad8d15ec676e97326 100644 (file)
@@ -29,7 +29,7 @@
 #include "busybox.h"
 
 /* Don't use lchown for libc5 or glibc older then 2.1.x */
-#if (__GLIBC__ < 2) && (__GLIBC_MINOR__ < 1)
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
 #define lchown chown
 #endif
 
index b6059d048286a0f3ac7ae54059177b4568dd0da9..ff935a4c056302c7f9415b8f72524facff73bcf3 100644 (file)
@@ -29,7 +29,7 @@
 #include "busybox.h"
 
 /* Don't use lchown for libc5 or glibc older then 2.1.x */
-#if (__GLIBC__ < 2) && (__GLIBC_MINOR__ < 1)
+#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
 #define lchown chown
 #endif