Changeset 77ad061
- Timestamp:
- Jan 12, 2013, 1:43:47 PM (12 years ago)
- 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)
- Location:
- libfaim
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libfaim/chatnav.c
r7869e48 r77ad061 380 380 381 381 if (snac2->family != 0x000d) { 382 faimdprintf(sess, 0, "faim: chatnav_parse_info: rec ieved 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); 383 383 return 0; 384 384 } … … 390 390 ret = parseinfo_perms(sess, mod, rx, snac, bs, snac2); 391 391 else if (snac2->type == 0x0003) /* request exchange info */ 392 faimdprintf(sess, 0, "chatnav_parse_info: respo sne to exchange info\n");392 faimdprintf(sess, 0, "chatnav_parse_info: response to exchange info\n"); 393 393 else if (snac2->type == 0x0004) /* request room info */ 394 394 faimdprintf(sess, 0, "chatnav_parse_info: response to room info\n"); -
libfaim/im.c
r7869e48 r77ad061 1025 1025 1026 1026 if (channel != 0x01) { 1027 faimdprintf(sess, 0, "icbm: ICBM rec ieved on unsupported channel. Ignoring. (chan = %04x)\n", channel);1027 faimdprintf(sess, 0, "icbm: ICBM received on unsupported channel. Ignoring. (chan = %04x)\n", channel); 1028 1028 return 0; 1029 1029 } -
libfaim/oscar.c
r7869e48 r77ad061 3553 3553 3554 3554 /* 3555 * Rec ieved 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. 3556 3556 */ 3557 3557 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { -
libfaim/rxhandlers.c
r7869e48 r77ad061 569 569 int i; 570 570 571 faimdprintf(sess, 1, "\nRec ieved unknown packet:");571 faimdprintf(sess, 1, "\nReceived unknown packet:"); 572 572 573 573 for (i = 0; aim_bstream_empty(&frame->data); i++) { -
libfaim/txqueue.c
r7869e48 r77ad061 100 100 101 101 if (!fr->conn) { 102 faimdprintf(sess, 1, "aim_tx_enqueue: WARNING: enqueueing packet with no connec etion\n");102 faimdprintf(sess, 1, "aim_tx_enqueue: WARNING: enqueueing packet with no connection\n"); 103 103 fr->conn = aim_getconn_type(sess, AIM_CONN_TYPE_BOS); 104 104 }
Note: See TracChangeset
for help on using the changeset viewer.