Changeset c8735aa
- Timestamp:
- Dec 19, 2003, 2:56:18 PM (19 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 5a95b69
- Parents:
- 2674412
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r2674412 rc8735aa 4 4 Only print forced AIM logout message once. 5 5 Don't bind F1 to help in edit context 6 Fix bug in 'getsubs' with no tickets 6 7 7 8 2.0.14 -
aim.c
r2674412 rc8735aa 285 285 /* there is a max away message lentgh we should check against */ 286 286 287 /* 287 288 aim_bos_setprofile(owl_global_get_aimsess(&g), 288 289 owl_global_get_bosconn(&g), 289 290 NULL, NULL, 0, "us-ascii", msg, 290 291 strlen(msg), 0); 292 */ 291 293 return(0); 292 294 } … … 2203 2205 owl_function_debugmsg("faimtest_conninitdone_chatnav:"); 2204 2206 2205 aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0);2206 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0);2207 /* aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0); */ 2208 /* aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0); */ 2207 2209 2208 2210 aim_clientready(sess, fr->conn); -
zephyr.c
r3c7d007a rc8735aa 748 748 ret=ZRetrieveSubscriptions(0, &num); 749 749 if (ret==ZERR_TOOMANYSUBS) { 750 out=owl_strdup("Zephyr: too many subscriptions\n"); 751 return(out); 750 return(owl_strdup("Zephyr: too many subscriptions\n")); 751 } else if (ret) { 752 return(owl_strdup("Zephyr: error retriving subscriptions\n")); 752 753 } 753 754
Note: See TracChangeset
for help on using the changeset viewer.