mirror of https://github.com/digint/btrbk
btrbk: bugfix: check undef on ABORTED flag in summary
parent
bb7aa10b23
commit
db6a1a464a
|
@ -1,6 +1,7 @@
|
|||
btrbk-current
|
||||
|
||||
* Use "cgen" for snapshot comparison.
|
||||
* Bugfix: fix crash in summary display (closes: #22).
|
||||
|
||||
btrbk-0.19.0
|
||||
|
||||
|
|
5
btrbk
5
btrbk
|
@ -2237,7 +2237,10 @@ MAIN:
|
|||
if(@subvol_out) {
|
||||
push @out, "$svol->{PRINT}", @subvol_out, "";
|
||||
}
|
||||
elsif($config_subvol->{ABORTED} ne "USER_SKIP") {
|
||||
elsif($config_subvol->{ABORTED} && ($config_subvol->{ABORTED} eq "USER_SKIP")) {
|
||||
# don't print "<no_action>" on USER_SKIP
|
||||
}
|
||||
else {
|
||||
push @out, "$svol->{PRINT}", "<no_action>", "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue