Changeset c8735aa


Ignore:
Timestamp:
Dec 19, 2003, 2:56:18 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
5a95b69
Parents:
2674412
Message:
Fix bug in 'getsubs' with no tickets
Some AIM experimenting removed for the moment
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r2674412 rc8735aa  
    44        Only print forced AIM logout message once.
    55        Don't bind F1 to help in edit context
     6        Fix bug in 'getsubs' with no tickets
    67       
    782.0.14
  • aim.c

    r2674412 rc8735aa  
    285285  /* there is a max away message lentgh we should check against */
    286286
     287  /*
    287288  aim_bos_setprofile(owl_global_get_aimsess(&g),
    288289                     owl_global_get_bosconn(&g),
    289290                     NULL, NULL, 0, "us-ascii", msg,
    290291                     strlen(msg), 0);
     292  */
    291293  return(0);
    292294}
     
    22032205  owl_function_debugmsg("faimtest_conninitdone_chatnav:");
    22042206
    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); */
    22072209
    22082210  aim_clientready(sess, fr->conn);
  • zephyr.c

    r3c7d007a rc8735aa  
    748748  ret=ZRetrieveSubscriptions(0, &num);
    749749  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"));
    752753  }
    753754
Note: See TracChangeset for help on using the changeset viewer.