Mercurial > pidgin.yaz
changeset 277:bba300ed4fab
[gaim-migrate @ 287]
mmm mmm good
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 28 May 2000 22:09:30 +0000 |
parents | 9e6fc62490cd |
children | 29e1669b006b |
files | libfaim/CHANGES.gaim src/oscar.c |
diffstat | 2 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libfaim/CHANGES.gaim Sun May 28 21:38:54 2000 +0000 +++ b/libfaim/CHANGES.gaim Sun May 28 22:09:30 2000 +0000 @@ -4,6 +4,8 @@ working before, and so now you can receive messages a lot faster, I hope. - Chat still isn't working, and I don't know why. + - It no longer has me as one of your buddies, and no longer sets your + profile when you don't have one to 'Hello'. Fri May 26 22:56:00 UTC 2000 EWarmenhoven - Adam explained to me everything I was doing wrong, ridiculed me a bit, @@ -13,6 +15,7 @@ - Changed aim_txqueue.c in libfaim to flush the queue after something was enqueue'd, per Adam's suggestion. This is the only real change I have made to libfaim in order to get it to work with gaim. + - Commented out the permit/deny list stuff (again). Thu May 25 07:10:34 UTC 2000 EWarmenhoven - Changed around aim.c a bit so that the registering of sounds and
--- a/src/oscar.c Sun May 28 21:38:54 2000 +0000 +++ b/src/oscar.c Sun May 28 22:09:30 2000 +0000 @@ -300,8 +300,7 @@ char *ip; char *cookie; - char buddies[] = "EWarmenhoven&"; - char profile[] = "Hello"; + char buddies[BUF_LONG]; va_start(ap, command); serviceid = va_arg(ap, int); @@ -310,9 +309,10 @@ switch(serviceid) { case 0x0005: /* Ads */ + sprintf(buddies, "%s&", current_user->username); aim_bos_setbuddylist(sess, command->conn, buddies); - aim_bos_setprofile(sess, command->conn, profile, NULL, - gaim_caps); + aim_bos_setprofile(sess, command->conn, current_user->user_info, + NULL, gaim_caps); aim_seticbmparam(sess, command->conn);