]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix #1450 about FirstWritten not updated with bscan
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 14 Jan 2010 14:23:02 +0000 (15:23 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Fri, 15 Jan 2010 08:50:10 +0000 (09:50 +0100)
bacula/src/stored/bscan.c

index 9372ab689504288b12fc61f07fc12533f962227f..eb1d1213067988d7f7c9b716025f93bbe82bd5e5 100644 (file)
@@ -914,6 +914,7 @@ static int create_media_record(B_DB *db, MEDIA_DBR *mr, VOLUME_LABEL *vl)
    mr->VolRetention = 365 * 3600 * 24; /* 1 year */
    mr->Enabled = 1;
    if (vl->VerNum >= 11) {
+      mr->set_first_written = true; /* Save FirstWritten during update_media */
       mr->FirstWritten = btime_to_utime(vl->write_btime);
       mr->LabelDate    = btime_to_utime(vl->label_btime);
    } else {