From e46b0d3d8a6ab922933a69229a04dd04b90ef7d6 Mon Sep 17 00:00:00 2001 From: David Scaife Date: Tue, 14 Aug 2018 20:40:09 +1000 Subject: [PATCH] USB: Fix redirfilter parameter configuration --- lib/vagrant-libvirt/config.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/vagrant-libvirt/config.rb b/lib/vagrant-libvirt/config.rb index c1c4b02..887eb38 100644 --- a/lib/vagrant-libvirt/config.rb +++ b/lib/vagrant-libvirt/config.rb @@ -491,9 +491,9 @@ module VagrantPlugins @redirfilters = [] if @redirfilters == UNSET_VALUE @redirfilters.push(class: options[:class] || -1, - vendor: options[:class] || -1, - product: options[:class] || -1, - version: options[:class] || -1, + vendor: options[:vendor] || -1, + product: options[:product] || -1, + version: options[:version] || -1, allow: options[:allow]) end