mirror of
https://github.com/weechat/weechat.git
synced 2026-06-28 05:46:38 +02:00
core: fix typos in many comments and some strings
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -174,7 +174,7 @@ relay_client_handshake_timer_cb (void *data, int remaining_calls)
|
||||
|
||||
if (rc == GNUTLS_E_SUCCESS)
|
||||
{
|
||||
/* handshake ok, set status to "connected" */
|
||||
/* handshake OK, set status to "connected" */
|
||||
weechat_unhook (client->hook_timer_handshake);
|
||||
client->hook_timer_handshake = NULL;
|
||||
relay_client_set_status (client, RELAY_STATUS_CONNECTED);
|
||||
|
||||
@@ -148,7 +148,7 @@ relay_weechat_protocol_is_sync (struct t_relay_client *ptr_client,
|
||||
return ((*ptr_flags) & flags) ? 1 : 0;
|
||||
|
||||
/*
|
||||
* buffer not found at all in hashtable (neither name, neitner "*")
|
||||
* buffer not found at all in hashtable (neither name, neither "*")
|
||||
* => it is NOT synchronized
|
||||
*/
|
||||
return 0;
|
||||
|
||||
@@ -35,7 +35,7 @@ enum t_relay_weechat_compression
|
||||
|
||||
struct t_relay_weechat_data
|
||||
{
|
||||
int password_ok; /* password received and ok? */
|
||||
int password_ok; /* password received and OK? */
|
||||
int compression; /* compression type */
|
||||
int nicklist_diff; /* (TEMPORARY) nicklist diff enabled?*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user