diff options
Diffstat (limited to 'pkg/subsystem/linux/maintainers.go')
| -rw-r--r-- | pkg/subsystem/linux/maintainers.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/subsystem/linux/maintainers.go b/pkg/subsystem/linux/maintainers.go index 2f4d63003..90ca79bef 100644 --- a/pkg/subsystem/linux/maintainers.go +++ b/pkg/subsystem/linux/maintainers.go @@ -24,6 +24,7 @@ type maintainersRecord struct { regexps []string lists []string maintainers []string + trees []string } func parseLinuxMaintainers(content io.Reader) ([]*maintainersRecord, error) { @@ -128,6 +129,8 @@ func applyProperty(record *maintainersRecord, property *recordProperty) error { return err } record.lists = append(record.lists, value) + case "T": + record.trees = append(record.trees, property.value) } return nil } |
