diff --git a/ChangeLog b/ChangeLog index 3125740..62a73e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +btrbk-current + + * Bugfix: fix parsing of "openssl_iv_size" configuration option. + btrbk-0.26.0 * MIGRATION diff --git a/btrbk b/btrbk index 4e285c1..8c1a91f 100755 --- a/btrbk +++ b/btrbk @@ -32,7 +32,7 @@ use Carp qw(confess); use Getopt::Long qw(GetOptions); use Time::Local qw( timelocal timegm timegm_nocheck ); -our $VERSION = '0.26.0'; +our $VERSION = '0.26.1-dev'; our $AUTHOR = 'Axel Burri '; our $PROJECT_HOME = ''; @@ -111,7 +111,7 @@ my %config_options = ( gpg_keyring => { default => undef, accept_file => { absolute => 1 } }, gpg_recipient => { default => undef, accept_regexp => qr/^[0-9a-zA-Z_@\+\-\.]+$/ }, openssl_ciphername => { default => "aes-256-cbc", accept_regexp => qr/^[0-9a-zA-Z\-]+$/ }, - openssl_iv_size => { default => undef, accept => [ "no", accept_numeric => 1 ] }, + openssl_iv_size => { default => undef, accept => [ "no" ], accept_numeric => 1 }, openssl_keyfile => { default => undef, accept_file => { absolute => 1 } }, kdf_backend => { default => undef, accept_file => { absolute => 1 } },