diff -crB xfsprogs-3.1.4/quota/report.c xfsprogs-3.1.4_quota_fix/quota/report.c *** xfsprogs-3.1.4/quota/report.c 2009-04-27 07:48:02.000000000 +0200 --- xfsprogs-3.1.4_quota_fix/quota/report.c 2011-03-17 23:03:06.479607647 +0100 *************** *** 302,308 **** int count; if (xfsquotactl(XFS_GETQUOTA, dev, type, id, (void *)&d) < 0) { ! if (errno != ENOENT && errno != ENOSYS) perror("XFS_GETQUOTA"); return 0; } --- 302,308 ---- int count; if (xfsquotactl(XFS_GETQUOTA, dev, type, id, (void *)&d) < 0) { ! if (errno != ENOENT && errno != ENOSYS && errno != ESRCH) perror("XFS_GETQUOTA"); return 0; }