Changeset 651560f


Ignore:
Timestamp:
Jun 1, 2003, 10:33:32 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:
aa5f725
Parents:
75e3879
Message:
Don't send the "You have an icon" message
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • aim.c

    r3abf28b r651560f  
    186186{
    187187  return(0);
     188}
     189
     190/* caller must free the return */
     191char *owl_aim_normalize_screenname(char *in) {
     192  char *out;
     193  int i, j, k;
     194
     195  j=strlen(in);
     196  out=owl_malloc(j+30);
     197  k=0;
     198  for (i=0; i<j; i++) {
     199    if (in[i]!=' ') {
     200      out[k]=in[i];
     201      k++;
     202    }
     203  }
     204  out[k]='\0';
     205  return(out);
    188206}
    189207
     
    12701288 
    12711289  if (args->icbmflags & AIM_IMFLAGS_HASICON) {
    1272     aim_send_im(sess, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon");
     1290    /* aim_send_im(sess, userinfo->sn, AIM_IMFLAGS_BUDDYREQ, "You have an icon"); */
    12731291    /* printf("icbm: their icon: iconstamp = %ld, iconlen = 0x%08lx, iconsum = 0x%04x\n", args->iconstamp, args->iconlen, args->iconsum); */
    12741292  }
  • commands.c

    r3abf28b r651560f  
    13811381    owl_function_makemsg("Not enough arguments to the aimwrite command.");
    13821382  } else {
    1383     tmpbuff = owl_strdup(buff);
     1383    tmpbuff=owl_strdup(buff);
    13841384    owl_function_aimwrite_setup(tmpbuff);
    13851385    owl_global_set_buffercommand(&g, tmpbuff);
  • owl_prototypes.h

    r3abf28b r651560f  
    77extern void owl_aim_chat_leave(char *chatroom);
    88extern int owl_aim_chat_sendmsg(char *chatroom, char *msg);
     9extern char *owl_aim_normalize_screenname(char *in);
    910extern int owl_aim_process_events();
    1011extern int faimtest_flapversion(aim_session_t *sess, aim_frame_t *fr, ...);
Note: See TracChangeset for help on using the changeset viewer.