# HG changeset patch # User Eric Warmenhoven # Date 959551770 0 # Node ID bba300ed4fab3e760a2235d1c48c078ec56f808d # Parent 9e6fc62490cdfd31a4666730b0f9f1d1a5007197 [gaim-migrate @ 287] mmm mmm good committer: Tailor Script diff -r 9e6fc62490cd -r bba300ed4fab libfaim/CHANGES.gaim --- 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 diff -r 9e6fc62490cd -r bba300ed4fab src/oscar.c --- 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);