Add access list members to conf generated from file.

This commit is contained in:
idk
2018-08-02 22:48:43 -04:00
parent 76514fb03c
commit 81140a27ad
2 changed files with 9 additions and 9 deletions

View File

@ -84,7 +84,7 @@ func (c *Conf) AddAccessListMember(key string) {
return
}
}
c.accessList = append(a.accessList, key)
c.accessList = append(c.accessList, key)
}
func NewI2PTunConf(iniFile string) (*Conf, error) {