summaryrefslogtreecommitdiff
path: root/quotacheck_v1.c
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2003-06-16 18:45:38 +0000
committerjkar8572 <jkar8572>2003-06-16 18:45:38 +0000
commit827e29c99efc70354b8dd209d87587ee1e8f549a (patch)
tree1d44de90445beb85dfb1f34d0d4e6cbb4ec32c4c /quotacheck_v1.c
parentb91f26486e94785bc559922031a1d8926f2af686 (diff)
Fixed a bug in quotacheck(8) parsing of v1 format files introduced by optimalization (Jan Kara)
Diffstat (limited to 'quotacheck_v1.c')
-rw-r--r--quotacheck_v1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/quotacheck_v1.c b/quotacheck_v1.c
index 1f583f7..320a5dc 100644
--- a/quotacheck_v1.c
+++ b/quotacheck_v1.c
@@ -37,8 +37,10 @@ static void load_dquots(char *filename, int fd, int type)
if (ddqblk.dqb_bhardlimit == 0
&& ddqblk.dqb_bsoftlimit == 0
&& ddqblk.dqb_ihardlimit == 0
- && ddqblk.dqb_isoftlimit == 0)
+ && ddqblk.dqb_isoftlimit == 0) {
+ id++;
continue;
+ }
dquot = add_dquot(id, type);
udq = &dquot->dq_dqb;
udq->dqb_bhardlimit = ddqblk.dqb_bhardlimit;