comparison src/protocols/napster/napster.c @ 8735:92cbf9713795

[gaim-migrate @ 9490] Patch by Jonathan Champ to corect the vairous speling mistakes we hav e in the coments and documentaion. Thansk Jonathan! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 21 Apr 2004 01:34:26 +0000
parents 7024b595b6ae
children d7b8eb1f0a18
comparison
equal deleted inserted replaced
8734:407c122d6191 8735:92cbf9713795
168 if (!data) 168 if (!data)
169 return; 169 return;
170 170
171 name = g_hash_table_lookup(data, "group"); 171 name = g_hash_table_lookup(data, "group");
172 172
173 /* Make sure the name has a # preceeding it */ 173 /* Make sure the name has a # preceding it */
174 if (name[0] != '#') 174 if (name[0] != '#')
175 nap_write_packet(gc, 400, "#%s", name); 175 nap_write_packet(gc, 400, "#%s", name);
176 else 176 else
177 nap_write_packet(gc, 400, "%s", name); 177 nap_write_packet(gc, 400, "%s", name);
178 } 178 }