# HG changeset patch # User Rob Flynn # Date 977298690 0 # Node ID e2d8b713d928066494d1e15b7bdd99398ea8061f # Parent 49d2eb2baf023c68f03a051afa98af3bf6b1a9a5 [gaim-migrate @ 1339] Properly handles being disconnected due to signing on twice :) committer: Tailor Script diff -r 49d2eb2baf02 -r e2d8b713d928 plugins/napster.c --- a/plugins/napster.c Wed Dec 20 06:28:05 2000 +0000 +++ b/plugins/napster.c Wed Dec 20 07:51:30 2000 +0000 @@ -335,6 +335,14 @@ return; } + if (command == 0x2ec) { + /* Looks like someone logged in as us! =-O */ + free(buf); + + signoff(gc); + return; + } + printf("NAP: [COMMAND: 0x%04x] %s\n", command, buf); }