diff --git a/ChangeLog b/ChangeLog index aa482afd..42483eb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-08-12 Nicolas François + + * lib/subordinateio.c: Fix removal of ranges. The database needs + to be marked as changed or commonio_close will discard any change. + 2013-08-11 Nicolas François * man/newusers.8.xml: Include documentation of SUB_GID_MIN, diff --git a/lib/subordinateio.c b/lib/subordinateio.c index 4196434b..34630f2c 100644 --- a/lib/subordinateio.c +++ b/lib/subordinateio.c @@ -319,12 +319,14 @@ static int remove_range(struct commonio_db *db, range->count = (last - range->start) + 1; ent->changed = true; + db->changed = true; } /* Is just the end of the entry removed? */ else if ((start > first) && (end >= last)) { range->count = (start - range->start) + 1; ent->changed = true; + db->changed = true; } /* The middle of the range is removed */ else { @@ -339,6 +341,7 @@ static int remove_range(struct commonio_db *db, range->count = (start - range->start) + 1; ent->changed = true; + db->changed = true; } }