Try to make indent formatting less horrible
[oweals/busybox.git] / libbb / find_root_device.c
index 654f1714577894b2e801d787b935f70148198b16..c595321dfe832f0197e2363047a387f997664edf 100644 (file)
@@ -2,9 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
- * Patched by a bunch of people.  Feel free to acknowledge your work.
+ * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -48,13 +46,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 */