]> git.sur5r.net Git - bacula/bacula/commitdiff
Make out of space on partition fatal
authorKern Sibbald <kern@sibbald.com>
Mon, 23 Oct 2017 16:45:57 +0000 (18:45 +0200)
committerKern Sibbald <kern@sibbald.com>
Mon, 23 Oct 2017 16:45:57 +0000 (18:45 +0200)
bacula/src/stored/block.c

index 06c1320a8dba202d54abd912fd23e1d5d2159dc8..5134b953d90e804fa20616d3cfb7655f81dbafe6 100644 (file)
@@ -302,7 +302,7 @@ bool DCR::write_block_to_dev()
          dev->update_freespace();
          if (dev->is_freespace_ok() && dev->free_space < dev->min_free_space) {
             dev->set_nospace();
-            Jmsg(jcr, M_WARNING, 0, _("Out of freespace caused End of Volume \"%s\" at %s on device %s. Write of %u bytes got %d.\n"),
+            Jmsg(jcr, M_FATAL, 0, _("Out of freespace caused End of Volume \"%s\" at %s on device %s. Write of %u bytes got %d.\n"),
                dev->getVolCatName(),
                dev->print_addr(ed1, sizeof(ed1)), dev->print_name(), wlen, stat);
          } else {