diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
commit | 149c77decdbc81979af5aa9853e346f9beebca79 (patch) | |
tree | 99ba28af0c9747425ff923feb437f6ccc1ad3f88 /src/plugins/relay/irc | |
parent | 46677c79fcb0aa57ee2129f959c76267a8f08d8d (diff) | |
download | weechat-149c77decdbc81979af5aa9853e346f9beebca79.zip |
core: fix typos in many comments and some strings
Diffstat (limited to 'src/plugins/relay/irc')
-rw-r--r-- | src/plugins/relay/irc/relay-irc.c | 2 | ||||
-rw-r--r-- | src/plugins/relay/irc/relay-irc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/relay/irc/relay-irc.c b/src/plugins/relay/irc/relay-irc.c index a33bd9aa4..6e77038c0 100644 --- a/src/plugins/relay/irc/relay-irc.c +++ b/src/plugins/relay/irc/relay-irc.c @@ -1391,7 +1391,7 @@ relay_irc_recv (struct t_relay_client *client, const char *data) goto end; } - /* check if connection to server is ok */ + /* check if connection to server is OK */ infolist_server = weechat_infolist_get ("irc_server", NULL, client->protocol_args); if (infolist_server) diff --git a/src/plugins/relay/irc/relay-irc.h b/src/plugins/relay/irc/relay-irc.h index 3c7e87a0e..6971ebc5b 100644 --- a/src/plugins/relay/irc/relay-irc.h +++ b/src/plugins/relay/irc/relay-irc.h @@ -29,7 +29,7 @@ struct t_relay_irc_data { char *address; /* client address (used when sending */ /* data to client) */ - int password_ok; /* password received and ok? */ + int password_ok; /* password received and OK? */ char *nick; /* nick for client */ int user_received; /* command "USER" received */ int connected; /* 1 if client is connected as IRC */ |