aboutsummaryrefslogtreecommitdiff
path: root/miscutils/makedevs.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
commite324184c0509cc0db168ce29546e1b52800a79c6 (patch)
tree9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /miscutils/makedevs.c
parent5f1b149d541ebba7cab841cb647f113248f9fb8f (diff)
downloadbusybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.bz2
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.zip
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'miscutils/makedevs.c')
-rw-r--r--miscutils/makedevs.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c
index 0ad12d798..6a3e80883 100644
--- a/miscutils/makedevs.c
+++ b/miscutils/makedevs.c
@@ -9,7 +9,7 @@
9 9
10#include "libbb.h" 10#include "libbb.h"
11 11
12#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF 12#if ENABLE_FEATURE_MAKEDEVS_LEAF
13int makedevs_main(int argc, char **argv); 13int makedevs_main(int argc, char **argv);
14int makedevs_main(int argc, char **argv) 14int makedevs_main(int argc, char **argv)
15{ 15{
@@ -65,7 +65,7 @@ int makedevs_main(int argc, char **argv)
65 return 0; 65 return 0;
66} 66}
67 67
68#elif defined CONFIG_FEATURE_MAKEDEVS_TABLE 68#elif ENABLE_FEATURE_MAKEDEVS_TABLE
69 69
70/* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ 70/* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */
71 71
@@ -162,8 +162,7 @@ int makedevs_main(int argc, char **argv)
162 ret = EXIT_FAILURE; 162 ret = EXIT_FAILURE;
163 goto loop; 163 goto loop;
164 } 164 }
165 } else 165 } else {
166 {
167 dev_t rdev; 166 dev_t rdev;
168 167
169 if (type == 'p') { 168 if (type == 'p') {