From d605ba11ab86a0a5885a82c842f649a438ac179d Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 3 Feb 2004 19:18:03 -0500 Subject: [PATCH] filefrag.c: Use #ifdef __linux__ instead of __LINUX__ so that it actually compiles on Linux. (Addresses Debian bug #230992) --- misc/ChangeLog | 6 ++++++ misc/filefrag.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/misc/ChangeLog b/misc/ChangeLog index 6b5630c..a7adc7e 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,9 @@ +2004-02-03 Theodore Ts'o + + * filefrag.c: Use #ifdef __linux__ instead of __LINUX__ so that it + actually compiles on Linux. (Addresses Debian bug + #230992) + 2004-01-31 Theodore Ts'o * chattr.1.in: Clarify man page. diff --git a/misc/filefrag.c b/misc/filefrag.c index 35fcf84..90137aa 100644 --- a/misc/filefrag.c +++ b/misc/filefrag.c @@ -9,7 +9,7 @@ * %End-Header% */ -#ifndef __LINUX__ +#ifndef __linux__ #include #include -- 1.8.3.1