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

(-)a/nss/nss_database.c (-1 / +3 lines)
Lines 424-431 nss_database_check_reload_and_get (struct nss_database_state *local, Link Here
424
     errors here are very unlikely, but the chance that we're entering
424
     errors here are very unlikely, but the chance that we're entering
425
     a container is also very unlikely, so we err on the side of both
425
     a container is also very unlikely, so we err on the side of both
426
     very unlikely things not happening at the same time.  */
426
     very unlikely things not happening at the same time.  */
427
  if (__stat64_time64 ("/", &str) != 0)
427
  if (__stat64_time64 ("/", &str) != 0) {
428
    __libc_lock_unlock (local->lock);
428
    return false;
429
    return false;
430
  }
429
  if (local->root_ino != 0 && (str.st_ino != local->root_ino
431
  if (local->root_ino != 0 && (str.st_ino != local->root_ino
430
                              || str.st_dev != local->root_dev))
432
                              || str.st_dev != local->root_dev))

Return to bug 828070