From: Tobias Doerffel Date: Fri, 21 Nov 2014 09:27:40 +0000 (+0100) Subject: Fixed typo in backup API X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=fdc14d987a7e3ac3bb5d1fd84d104f998e41ed10;p=pve-manager-legacy.git Fixed typo in backup API Signed-off-by: Tobias Doerffel --- diff --git a/PVE/API2/Backup.pm b/PVE/API2/Backup.pm index ddcdf57b..c26c8d37 100644 --- a/PVE/API2/Backup.pm +++ b/PVE/API2/Backup.pm @@ -78,7 +78,7 @@ sub parse_dow { return $res; }; -my $vzdump_propetries = { +my $vzdump_properties = { additionalProperties => 0, properties => PVE::VZDump::json_config_properties({}), }; @@ -112,7 +112,7 @@ sub parse_vzdump_cron_config { die "unable to parse day of week '$dow' in '$filename'\n" if !$dowhash; my $args = PVE::Tools::split_args($param); - my $opts = PVE::JSONSchema::get_options($vzdump_propetries, $args, 'vmid'); + my $opts = PVE::JSONSchema::get_options($vzdump_properties, $args, 'vmid'); $opts->{id} = "$digest:$jid"; $jid++;