X-Git-Url: http://git.tuebingen.mpg.de/?p=dss.git;a=blobdiff_plain;f=dss.c;h=f04be8f95595a41b33478a1823ea77f53389ca35;hp=6101f17742c7ba8ef6e3a57a1878dfccb7227feb;hb=676f0d8d399ade79ff579e28787a63f00bdf2ce3;hpb=0ba29646cbd80a8bb7bdf827352bd1332217c398 diff --git a/dss.c b/dss.c index 6101f17..f04be8f 100644 --- a/dss.c +++ b/dss.c @@ -385,14 +385,14 @@ static struct snapshot *find_outdated_snapshot(struct snapshot_list *sl) int i; struct snapshot *s; - DSS_DEBUG_LOG("looking for snapshots belonging to intervals greater than %d\n", + DSS_DEBUG_LOG("looking for snapshots belonging to intervals >= %d\n", conf.num_intervals_arg); FOR_EACH_SNAPSHOT(s, i, sl) { if (snapshot_is_being_created(s)) continue; if (is_reference_snapshot(s)) continue; - if (s->interval <= conf.num_intervals_arg) + if (s->interval < conf.num_intervals_arg) continue; return s; }