Changeset 77ad061


Ignore:
Timestamp:
Jan 12, 2013, 1:43:47 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
bbf85df
Parents:
e3a0d71
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:37:10)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:47)
Message:
Fix user-facing spelling in libfaim things
Location:
libfaim
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libfaim/chatnav.c

    r7869e48 r77ad061  
    380380
    381381        if (snac2->family != 0x000d) {
    382                 faimdprintf(sess, 0, "faim: chatnav_parse_info: recieved response that maps to corrupt request! (fam=%04x)\n", snac2->family);
     382                faimdprintf(sess, 0, "faim: chatnav_parse_info: received response that maps to corrupt request! (fam=%04x)\n", snac2->family);
    383383                return 0;
    384384        }
     
    390390                ret = parseinfo_perms(sess, mod, rx, snac, bs, snac2);
    391391        else if (snac2->type == 0x0003) /* request exchange info */
    392                 faimdprintf(sess, 0, "chatnav_parse_info: resposne to exchange info\n");
     392                faimdprintf(sess, 0, "chatnav_parse_info: response to exchange info\n");
    393393        else if (snac2->type == 0x0004) /* request room info */
    394394                faimdprintf(sess, 0, "chatnav_parse_info: response to room info\n");
  • libfaim/im.c

    r7869e48 r77ad061  
    10251025
    10261026        if (channel != 0x01) {
    1027                 faimdprintf(sess, 0, "icbm: ICBM recieved on unsupported channel.  Ignoring. (chan = %04x)\n", channel);
     1027                faimdprintf(sess, 0, "icbm: ICBM received on unsupported channel.  Ignoring. (chan = %04x)\n", channel);
    10281028                return 0;
    10291029        }
  • libfaim/oscar.c

    r7869e48 r77ad061  
    35533553
    35543554/*
    3555  * Recieved in response to an IM sent with the AIM_IMFLAGS_ACK option.
     3555 * Received in response to an IM sent with the AIM_IMFLAGS_ACK option.
    35563556 */
    35573557static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) {
  • libfaim/rxhandlers.c

    r7869e48 r77ad061  
    569569        int i;
    570570
    571         faimdprintf(sess, 1, "\nRecieved unknown packet:");
     571        faimdprintf(sess, 1, "\nReceived unknown packet:");
    572572
    573573        for (i = 0; aim_bstream_empty(&frame->data); i++) {
  • libfaim/txqueue.c

    r7869e48 r77ad061  
    100100
    101101        if (!fr->conn) {
    102                 faimdprintf(sess, 1, "aim_tx_enqueue: WARNING: enqueueing packet with no connecetion\n");
     102                faimdprintf(sess, 1, "aim_tx_enqueue: WARNING: enqueueing packet with no connection\n");
    103103                fr->conn = aim_getconn_type(sess, AIM_CONN_TYPE_BOS);
    104104        }
Note: See TracChangeset for help on using the changeset viewer.