summaryrefslogtreecommitdiff
path: root/libbb/find_root_device.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-06-20 09:25:34 +0000
committerEric Andersen <andersen@codepoet.org>2003-06-20 09:25:34 +0000
commitdd92c77bb0de724cfc06feed5c716f936196ff63 (patch)
tree9ecbfe3d00c8d6054feb478577b2e11ca35f57e3 /libbb/find_root_device.c
parent0cc7e6236a897cb09a78b61a21d2c16ad423f4ce (diff)
downloadbusybox-w32-dd92c77bb0de724cfc06feed5c716f936196ff63.tar.gz
busybox-w32-dd92c77bb0de724cfc06feed5c716f936196ff63.tar.bz2
busybox-w32-dd92c77bb0de724cfc06feed5c716f936196ff63.zip
Don't shadow a paramater
Diffstat (limited to 'libbb/find_root_device.c')
-rw-r--r--libbb/find_root_device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/find_root_device.c b/libbb/find_root_device.c
index 654f17145..7cbac0c56 100644
--- a/libbb/find_root_device.c
+++ b/libbb/find_root_device.c
@@ -48,13 +48,13 @@ extern char *find_real_root_device_name(const char* name)
48 bb_perror_msg("could not open '/dev'"); 48 bb_perror_msg("could not open '/dev'");
49 else { 49 else {
50 while((entry = readdir(dir)) != NULL) { 50 while((entry = readdir(dir)) != NULL) {
51 const char *name = entry->d_name; 51 const char *myname = entry->d_name;
52 /* Must skip ".." since that is "/", and so we 52 /* Must skip ".." since that is "/", and so we
53 * would get a false positive on ".." */ 53 * would get a false positive on ".." */
54 if (name[0] == '.' && name[1] == '.' && !name[2]) 54 if (myname[0] == '.' && myname[1] == '.' && !myname[2])
55 continue; 55 continue;
56 56
57 fileName = concat_path_file("/dev", name); 57 fileName = concat_path_file("/dev", myname);
58 58
59 /* Some char devices have the same dev_t as block 59 /* Some char devices have the same dev_t as block
60 * devices, so make sure this is a block device */ 60 * devices, so make sure this is a block device */