mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
Attempt to fix windows lint errors again
This commit is contained in:
parent
0e83268356
commit
5d0db1c250
2 changed files with 3 additions and 2 deletions
|
@ -47,7 +47,7 @@ func Handler(packets chan packet.Packet) {
|
|||
packetInfo, err := RecvVerdictRequest()
|
||||
if err != nil {
|
||||
// Check if we are done with processing.
|
||||
if errors.Is(ErrKextNotReady) {
|
||||
if errors.Is(err, ErrKextNotReady) {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,8 @@ import (
|
|||
)
|
||||
|
||||
// Windows specific constants for the WSAIoctl interface.
|
||||
const ( //nolint:golint
|
||||
//nolint:golint
|
||||
const (
|
||||
SIO_RCVALL = syscall.IOC_IN | syscall.IOC_VENDOR | 1
|
||||
|
||||
RCVALL_OFF = 0
|
||||
|
|
Loading…
Add table
Reference in a new issue