# HG changeset patch # User Mark Doliner # Date 1092877594 0 # Node ID 4c1a1be8ce339dd39139200a24c7c4fdb3adf83b # Parent ec6ff57d7b06a5f6bf0e1b69bb22ca3cd01e6bad [gaim-migrate @ 10643] A patch from Daniel Atallah to remove duplicate semicolons committer: Tailor Script diff -r ec6ff57d7b06 -r 4c1a1be8ce33 plugins/tcl/tcl.c --- a/plugins/tcl/tcl.c Wed Aug 18 11:46:46 2004 +0000 +++ b/plugins/tcl/tcl.c Thu Aug 19 01:06:34 2004 +0000 @@ -228,7 +228,7 @@ info->name = g_strdup(Tcl_GetString(listitems[0])); info->version = g_strdup(Tcl_GetString(listitems[1])); info->summary = g_strdup(Tcl_GetString(listitems[2])); - info->description = g_strdup(Tcl_GetString(listitems[3]));; + info->description = g_strdup(Tcl_GetString(listitems[3])); info->author = g_strdup(Tcl_GetString(listitems[5])); info->homepage = g_strdup(Tcl_GetString(listitems[5])); diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/gtkblist.c --- a/src/gtkblist.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/gtkblist.c Thu Aug 19 01:06:34 2004 +0000 @@ -4640,7 +4640,7 @@ struct gaim_gtk_blist_sort_method *method = g_new0(struct gaim_gtk_blist_sort_method, 1); method->id = g_strdup(id); method->name = g_strdup(name); - method->func = func;; + method->func = func; gaim_gtk_blist_sort_methods = g_slist_append(gaim_gtk_blist_sort_methods, method); } diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/protocols/msn/msn.c Thu Aug 19 01:06:34 2004 +0000 @@ -603,7 +603,7 @@ msn_http_session_init(session); gc->proto_data = session; - gc->flags |= GAIM_CONNECTION_HTML | GAIM_CONNECTION_FORMATTING_WBFO | GAIM_CONNECTION_NO_BGCOLOR | GAIM_CONNECTION_NO_FONTSIZE | GAIM_CONNECTION_NO_URLDESC;; + gc->flags |= GAIM_CONNECTION_HTML | GAIM_CONNECTION_FORMATTING_WBFO | GAIM_CONNECTION_NO_BGCOLOR | GAIM_CONNECTION_NO_FONTSIZE | GAIM_CONNECTION_NO_URLDESC; gaim_connection_update_progress(gc, _("Connecting"), 0, MSN_CONNECT_STEPS); diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/protocols/msn/slpmsg.c --- a/src/protocols/msn/slpmsg.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/protocols/msn/slpmsg.c Thu Aug 19 01:06:34 2004 +0000 @@ -111,7 +111,7 @@ text = FALSE; - flags = GUINT32_TO_LE(msg->msnslp_header.flags);; + flags = GUINT32_TO_LE(msg->msnslp_header.flags); switch (flags) { diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/protocols/msn/user.c --- a/src/protocols/msn/user.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/protocols/msn/user.c Thu Aug 19 01:06:34 2004 +0000 @@ -292,7 +292,7 @@ const char *username; account = user->userlist->session->account; - username = msn_object_get_creator(obj);; + username = msn_object_get_creator(obj); if (gaim_find_conversation_with_account(username, account) != NULL) msn_request_buddy_icon(account->gc, username); diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/protocols/rendezvous/rendezvous.c --- a/src/protocols/rendezvous/rendezvous.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/protocols/rendezvous/rendezvous.c Thu Aug 19 01:06:34 2004 +0000 @@ -245,7 +245,7 @@ rb->p2pjport = atoi(node1->value); } - node1 = mdns_txt_find(rdata, "status");; + node1 = mdns_txt_find(rdata, "status"); if ((node1 != NULL) && (node1->value != NULL)) { if (!strcmp(node1->value, "avail")) { /* Available */ diff -r ec6ff57d7b06 -r 4c1a1be8ce33 src/protocols/zephyr/zephyr.c --- a/src/protocols/zephyr/zephyr.c Wed Aug 18 11:46:46 2004 +0000 +++ b/src/protocols/zephyr/zephyr.c Thu Aug 19 01:06:34 2004 +0000 @@ -1074,9 +1074,9 @@ /* deal with classes */ if (!g_ascii_strcasecmp(triple[0],zephyr->ourhost)) { - zclass = g_strdup("%host%");; + zclass = g_strdup("%host%"); } else if (!g_ascii_strcasecmp(triple[0],zephyr->ourhostcanon)) { - zclass = g_strdup("%canon%");; + zclass = g_strdup("%canon%"); } else { zclass = g_strdup(triple[0]); } @@ -1084,9 +1084,9 @@ /* deal with instances */ if (!g_ascii_strcasecmp(triple[1],zephyr->ourhost)) { - zinst = g_strdup("%host%");; + zinst = g_strdup("%host%"); } else if (!g_ascii_strcasecmp(triple[1],zephyr->ourhostcanon)) { - zinst = g_strdup("%canon%");; + zinst = g_strdup("%canon%"); } else { zinst = g_strdup(triple[1]); }