Fix linter warnings

This commit is contained in:
Vladimir 2022-11-09 12:23:53 +01:00
parent a04b76ff58
commit 852fb32bbd
3 changed files with 6 additions and 6 deletions

View file

@ -41,12 +41,12 @@ func ResetVerdictOfAllConnections() error {
return windowskext.ClearCache()
}
// UpdateVerdictOfConnection updates the verdict of specific connection in the kernel extension
// UpdateVerdictOfConnection updates the verdict of specific connection in the kernel extension.
func UpdateVerdictOfConnection(conn *network.Connection) error {
return windowskext.UpdateVerdict(conn)
}
// GetKextVersion returns the version of the kernel extension
// GetKextVersion returns the version of the kernel extension.
func GetKextVersion() (string, error) {
version, err := windowskext.GetVersion()
if err != nil {