From 6ae1f4a2f6dadcc374011c1cc0767c7c5a2f25b6 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 18 Apr 2018 12:42:39 -0700 Subject: [PATCH] Fix require for ffi-win32-extensions Fixes #9698 --- lib/vagrant.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index 7690c13f3..4ecc33044 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -67,7 +67,7 @@ require 'openssl' # If we are on Windows, load in File helpers if Vagrant::Util::Platform.windows? - require "win32-ffi-extensions" + require "ffi-win32-extensions" require "win32/file/security" end