mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 18:33:06 +00:00
Don't shadow a paramater
This commit is contained in:
parent
0cc7e6236a
commit
dd92c77bb0
@ -48,13 +48,13 @@ extern char *find_real_root_device_name(const char* name)
|
||||
bb_perror_msg("could not open '/dev'");
|
||||
else {
|
||||
while((entry = readdir(dir)) != NULL) {
|
||||
const char *name = entry->d_name;
|
||||
const char *myname = entry->d_name;
|
||||
/* Must skip ".." since that is "/", and so we
|
||||
* would get a false positive on ".." */
|
||||
if (name[0] == '.' && name[1] == '.' && !name[2])
|
||||
if (myname[0] == '.' && myname[1] == '.' && !myname[2])
|
||||
continue;
|
||||
|
||||
fileName = concat_path_file("/dev", name);
|
||||
fileName = concat_path_file("/dev", myname);
|
||||
|
||||
/* Some char devices have the same dev_t as block
|
||||
* devices, so make sure this is a block device */
|
||||
|
Loading…
Reference in New Issue
Block a user