success -> ok

This commit is contained in:
Liam Stanley 2017-02-06 03:53:05 -05:00
parent 10d5bfd60f
commit 52e05d3c15

@ -825,16 +825,16 @@ func (c *Client) Whowas(nick string, amount int) error {
// //
// nickLen, success := GetServerOption("MAXNICKLEN") // nickLen, success := GetServerOption("MAXNICKLEN")
// //
func (c *Client) GetServerOption(key string) (result string, success bool) { func (c *Client) GetServerOption(key string) (result string, ok bool) {
if c.config.DisableTracking { if c.config.DisableTracking {
panic("GetServerOption() used when tracking is disabled") panic("GetServerOption() used when tracking is disabled")
} }
c.state.mu.Lock() c.state.mu.Lock()
result, success = c.state.serverOptions[key] result, ok = c.state.serverOptions[key]
c.state.mu.Unlock() c.state.mu.Unlock()
return result, success return result, ok
} }
// ServerName returns the server host/name that the server itself identifies // ServerName returns the server host/name that the server itself identifies