# HG changeset patch # User andrew.victor@mxit.com # Date 1275080929 0 # Node ID d7325448badbad0e8dceaf6273581d2db0e784bf # Parent da8c00c5b4e54b900dd77fba031a38ada0f64037 Some spelling fixes to code comments. diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/http.c --- a/libpurple/protocols/mxit/http.c Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/http.c Fri May 28 21:08:49 2010 +0000 @@ -118,7 +118,7 @@ /* read bytes from the socket */ len = read( session->fd, buf + buflen, sizeof( buf ) - buflen ); if ( len <= 0 ) { - /* connection has been terminated, or error occured */ + /* connection has been terminated, or error occurred */ goto done; } @@ -139,7 +139,7 @@ } buflen += len; - /* we have the header's end now skip over the http seperator to get the body offset */ + /* we have the header's end now skip over the http separator to get the body offset */ ch += strlen( HTTP_11_SEPERATOR ); *(ch - 1) = '\0'; body = ch; @@ -206,7 +206,7 @@ /* read bytes from the socket */ len = read( session->fd, &session->rx_dbuf[session->rx_i], session->rx_res ); if ( len <= 0 ) { - /* connection has been terminated, or error occured */ + /* connection has been terminated, or error occurred */ goto done; } diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/login.c --- a/libpurple/protocols/mxit/login.c Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/login.c Fri May 28 21:08:49 2010 +0000 @@ -637,7 +637,7 @@ /* add the captcha */ logindata->captcha = purple_base64_decode( parts[3], &logindata->captcha_size ); - field = purple_request_field_image_new( "capcha", _( "Security Code" ), (gchar*) logindata->captcha, logindata->captcha_size ); + field = purple_request_field_image_new( "captcha", _( "Security Code" ), (gchar*) logindata->captcha, logindata->captcha_size ); purple_request_field_group_add_field( group, field ); /* ask for input (required) */ @@ -659,7 +659,7 @@ } purple_request_field_list_add( field, country[1], g_strdup( country[0] ) ); if ( strcmp( country[1], parts[6] ) == 0 ) { - /* based on the user's ip, this is his current country code, so we default to it */ + /* based on the user's IP, this is his current country code, so we default to it */ purple_request_field_list_add_selected( field, country[1] ); } g_strfreev( country ); diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/markup.c --- a/libpurple/protocols/mxit/markup.c Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/markup.c Fri May 28 21:08:49 2010 +0000 @@ -257,7 +257,7 @@ * all the text as is to the conversation window. this message dump is very * confusing and makes it totally unusable. to work around this we will count * the amount of tags and if its more than the pidgin threshold, we will just - * break the message up into smaller parts and send them seperately to pidgin. + * break the message up into smaller parts and send them separately to pidgin. * to the user it will look like multiple messages, but at least he will be able * to use and understand it. */ diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/mxit.c --- a/libpurple/protocols/mxit/mxit.c Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/mxit.c Fri May 28 21:08:49 2010 +0000 @@ -145,7 +145,7 @@ /*------------------------------------------------------------------------ - * Unegister MXit from receiving URI click notifications from the UI + * Unregister MXit from receiving URI click notifications from the UI */ static void mxit_unregister_uri_handler() { @@ -203,7 +203,7 @@ if ( find_active_chat( session->active_chats, who ) ) return; - /* determite if this buddy is a MXit service */ + /* determine if this buddy is a MXit service */ switch ( contact->type ) { case MXIT_TYPE_BOT : case MXIT_TYPE_CHATROOM : @@ -594,7 +594,7 @@ 32, 32, /* min width & height */ MXIT_AVATAR_SIZE, /* max width */ MXIT_AVATAR_SIZE, /* max height */ - 100000, /* max filezize */ + 100000, /* max filesize */ PURPLE_ICON_SCALE_SEND | PURPLE_ICON_SCALE_DISPLAY /* scaling rules */ }, mxit_list_icon, /* list_icon */ diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/mxit.h --- a/libpurple/protocols/mxit/mxit.h Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/mxit.h Fri May 28 21:08:49 2010 +0000 @@ -105,7 +105,7 @@ /* Client session flags */ #define MXIT_FLAG_CONNECTED 0x01 /* established connection to the server */ #define MXIT_FLAG_LOGGEDIN 0x02 /* user currently logged in */ -#define MXIT_FLAG_FIRSTROSTER 0x04 /* set to true once the first roster update has been recevied and processed */ +#define MXIT_FLAG_FIRSTROSTER 0x04 /* set to true once the first roster update has been received and processed */ /* define this to enable the link clicking support */ diff -r da8c00c5b4e5 -r d7325448badb libpurple/protocols/mxit/roster.c --- a/libpurple/protocols/mxit/roster.c Tue May 25 21:08:25 2010 +0000 +++ b/libpurple/protocols/mxit/roster.c Fri May 28 21:08:49 2010 +0000 @@ -44,12 +44,12 @@ /* statuses (reference: libpurple/status.h) */ static struct status { - PurpleStatusPrimitive primative; + PurpleStatusPrimitive primitive; int mxit; const char* id; const char* name; } const mxit_statuses[] = { - /* primative, no, id, name */ + /* primitive, no, id, name */ { PURPLE_STATUS_OFFLINE, MXIT_PRESENCE_OFFLINE, "offline", N_( "Offline" ) }, /* 0 */ { PURPLE_STATUS_AVAILABLE, MXIT_PRESENCE_ONLINE, "online", N_( "Available" ) }, /* 1 */ { PURPLE_STATUS_AWAY, MXIT_PRESENCE_AWAY, "away", N_( "Away" ) }, /* 2 */ @@ -74,7 +74,7 @@ const struct status* status = &mxit_statuses[i]; /* add mxit status (reference: "libpurple/status.h") */ - type = purple_status_type_new_with_attrs( status->primative, status->id, _( status->name ), TRUE, TRUE, FALSE, + type = purple_status_type_new_with_attrs( status->primitive, status->id, _( status->name ), TRUE, TRUE, FALSE, "message", _( "Message" ), purple_value_new( PURPLE_TYPE_STRING ), NULL ); @@ -292,7 +292,7 @@ * XXX: libPurple does not currently provide an API to change or rename the group name * for a specific buddy. One option is to remove the buddy from the list and re-adding * him in the new group, but by doing that makes the buddy go offline and then online - * again. This is really not ideal and very iretating, but how else then? + * again. This is really not ideal and very irritating, but how else then? */ /* create new buddy */