This commit is contained in:
Leon Klingele 2015-01-04 12:21:48 +01:00
parent 8a68cc51d9
commit c244efe3d3

View File

@ -330,7 +330,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
} else if len(parts) != 1 {
c.SysMsg("Too many arguments for /banned")
} else {
for fingerprint, _ := range c.Server.bannedPK {
for fingerprint := range c.Server.bannedPK {
c.SysMsg("Banned fingerprint: %s", fingerprint)
}
}