libbb.h now includes ../busybox.h. This way, files in libbb that have
[oweals/busybox.git] / chown.c
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