# HG changeset patch # User Luke Schierer # Date 1044452848 0 # Node ID cbdc0fc5c3c6d79e5ab8d84dab225c51359debda # Parent f630a793b9d4962f11ca56deaefa8aae7526daa0 [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 diff -r f630a793b9d4 -r cbdc0fc5c3c6 src/protocols/gg/gg.c --- 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 * @@ -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", ' ');