Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 345581
Collapse All | Expand All

(-)grub-1.98/util/getroot.c.orig (-1 / +2 lines)
Lines 218-224 Link Here
218
      if (ent->d_name[0] == '.')
218
      if (ent->d_name[0] == '.')
219
	continue;
219
	continue;
220
220
221
      if (lstat (ent->d_name, &st) < 0)
221
      if ((strcmp (dir, "mapper") == 0
222
           ? stat (ent->d_name, &st) : lstat (ent->d_name, &st)) < 0)
222
	/* Ignore any error.  */
223
	/* Ignore any error.  */
223
	continue;
224
	continue;
224
225

Return to bug 345581