Mercurial > pidgin.yaz
changeset 4530:cbdc0fc5c3c6
[gaim-migrate @ 4808]
Carl-Daniel Hailfinger (c-d_hailfinger) writes:
"Currently, we abort if we encounter an empty line in
the reply from the server. (My fault, I coded it)
Since I do not know whether the original Gadu-gadu
client will save buddy lists with an empty line in
between, skip such a line and continue.
Possible harm done: none"
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 05 Feb 2003 13:47:28 +0000 |
parents | f630a793b9d4 |
children | 0e148dd373ab |
files | src/protocols/gg/gg.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/gg/gg.c Wed Feb 05 08:10:37 2003 +0000 +++ b/src/protocols/gg/gg.c Wed Feb 05 13:47:28 2003 +0000 @@ -1,6 +1,6 @@ /* * gaim - Gadu-Gadu Protocol Plugin - * $Id: gg.c 4798 2003-02-04 20:30:17Z chipx86 $ + * $Id: gg.c 4808 2003-02-05 13:47:28Z lschiere $ * * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> * @@ -784,7 +784,7 @@ if (strlen(users_tbl[i])==0) { debug_printf("import_buddies_server_results: users_tbl[i] is empty\n"); - break; + continue; } g_strdelimit(users_tbl[i], "\r\t\n\015", ' ');