diff options
Diffstat (limited to 'datastructs.go')
-rw-r--r-- | datastructs.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/datastructs.go b/datastructs.go index b970cec..f937d35 100644 --- a/datastructs.go +++ b/datastructs.go @@ -1,7 +1,6 @@ package main import ( - "errors" "time" ) @@ -33,7 +32,7 @@ func (cd *CleanData) equals(other *CleanData) bool { return cd.ipbSrc == other.ipbSrc && cd.ipbDst == other.ipbDst && cd.asSrc == other.asSrc && - cd.asDst == othr.asDst && + cd.asDst == other.asDst && cd.portSrc == other.portSrc && cd.portDst == other.portDst && cd.volume == other.volume && |