fixed capture group

This commit is contained in:
Daniel Czerwonk 2016-11-26 21:33:33 +01:00
parent e64e7db13f
commit b675d758e9

View File

@ -89,7 +89,7 @@ func parseLine(line string, ipVersion int) (*session, bool) {
match := regex.FindStringSubmatch(line)
if match != nil {
session := session{name: match[1], ipVersion: ipVersion, established: parseState(match[4])}
session := session{name: match[1], ipVersion: ipVersion, established: parseState(match[5])}
return &session, true
} else {
return nil, false