diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
commit | e324184c0509cc0db168ce29546e1b52800a79c6 (patch) | |
tree | 9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /modutils/lsmod.c | |
parent | 5f1b149d541ebba7cab841cb647f113248f9fb8f (diff) | |
download | busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.bz2 busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.zip |
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r-- | modutils/lsmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index acca23012..01e1c5539 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include "libbb.h" | 14 | #include "libbb.h" |
15 | 15 | ||
16 | 16 | ||
17 | #ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE | 17 | #if !ENABLE_FEATURE_CHECK_TAINTED_MODULE |
18 | static void check_tainted(void) { puts(""); } | 18 | static void check_tainted(void) { puts(""); } |
19 | #else | 19 | #else |
20 | #define TAINT_FILENAME "/proc/sys/kernel/tainted" | 20 | #define TAINT_FILENAME "/proc/sys/kernel/tainted" |
@@ -44,7 +44,7 @@ static void check_tainted(void) | |||
44 | } | 44 | } |
45 | #endif | 45 | #endif |
46 | 46 | ||
47 | #ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE | 47 | #if ENABLE_FEATURE_QUERY_MODULE_INTERFACE |
48 | 48 | ||
49 | struct module_info | 49 | struct module_info |
50 | { | 50 | { |
@@ -131,7 +131,7 @@ int lsmod_main(int argc, char **argv) | |||
131 | puts(""); | 131 | puts(""); |
132 | } | 132 | } |
133 | 133 | ||
134 | #ifdef CONFIG_FEATURE_CLEAN_UP | 134 | #if ENABLE_FEATURE_CLEAN_UP |
135 | free(module_names); | 135 | free(module_names); |
136 | #endif | 136 | #endif |
137 | 137 | ||