1
0
mirror of https://github.com/shazow/ssh-chat.git synced 2025-08-06 02:21:29 +03:00
This commit is contained in:
Leon Klingele 2015-01-04 12:21:48 +01:00
parent 8a68cc51d9
commit c244efe3d3

@ -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)
}
}