remove kext glue dll from dependencies
This commit is contained in:
@@ -15,7 +15,7 @@ func start(ch chan packet.Packet) error {
|
||||
return fmt.Errorf("interception: could not get kext sys: %s", err)
|
||||
}
|
||||
|
||||
err = windowskext.Init("", kextFile.Path())
|
||||
err = windowskext.Init(kextFile.Path())
|
||||
if err != nil {
|
||||
return fmt.Errorf("interception: could not init windows kext: %s", err)
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ func init() {
|
||||
}
|
||||
|
||||
// Init initializes the DLL and the Kext (Kernel Driver).
|
||||
func Init(dllPath, path string) error {
|
||||
func Init(path string) error {
|
||||
driverPath = path
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -52,7 +52,6 @@ func MandatoryUpdates() (identifiers []string) {
|
||||
identifiers = append(
|
||||
identifiers,
|
||||
PlatformIdentifier("core/portmaster-core.exe"),
|
||||
PlatformIdentifier("kext/portmaster-kext.dll"),
|
||||
PlatformIdentifier("kext/portmaster-kext.sys"),
|
||||
PlatformIdentifier("kext/portmaster-kext.pdb"),
|
||||
PlatformIdentifier("start/portmaster-start.exe"),
|
||||
|
||||
Reference in New Issue
Block a user