# HG changeset patch # User Christian Hammond # Date 1031353400 0 # Node ID 66bf7ecefeddbb8abdaed2dd54550abe809d63be # Parent 683db9dca2fb891611414ec7d2f203bea0917795 [gaim-migrate @ 3545] Fixing some bugs, since Sean retired and all. committer: Tailor Script diff -r 683db9dca2fb -r 66bf7ecefedd gaim2blt.pl --- a/gaim2blt.pl Wed Sep 04 15:12:55 2002 +0000 +++ b/gaim2blt.pl Fri Sep 06 23:03:20 2002 +0000 @@ -29,7 +29,7 @@ if ($type eq 'g') { print " }\n" if ($in_group); - print qq( "$args" {\n)"; + print qq( "$args" {\n); $in_group = 1; } elsif ($type eq 'b') { my ($buddy, $alias) = split /:/, $args; diff -r 683db9dca2fb -r 66bf7ecefedd src/aim.c --- a/src/aim.c Wed Sep 04 15:12:55 2002 +0000 +++ b/src/aim.c Fri Sep 06 23:03:20 2002 +0000 @@ -495,10 +495,10 @@ if (connect(fd, (struct sockaddr *)&saddr, sizeof(saddr)) != -1) return fd; else - debug_printf("Failed to assign %s to a socket (Error: %s)", + debug_printf("Failed to assign %s to a socket (Error: %s)\n", saddr.sun_path, strerror(errno)); } else - debug_printf("Unable to open socket: %s", strerror(errno)); + debug_printf("Unable to open socket: %s\n", strerror(errno)); close(fd); return -1; }