~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/fe-common/core/fe-modules.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Bjälevik
  • Date: 2007-04-28 02:52:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070428025201-2c4swxnpn4wr7fpg
Tags: 0.8.11-0ubuntu1
* New upstream release:
  - http://www.irssi.org/news/ChangeLog
* debian/{control,compat}:
  - Bump Standards.
* debian/patches/00list:
  - Disable 05upgrade-check-binary.patch, applied upstream.
  - Disable 08doublefree.patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
        char **list, *name;
131
131
        int count;
132
132
 
133
 
        list = g_new(char *, 2 + 2*g_slist_length(chat_protocols));
 
133
        list = g_new(char *, 2 + 3*g_slist_length(chat_protocols));
134
134
        list[0] = "fe";
135
135
 
136
136
        count = 1;
142
142
 
143
143
                list[count++] = name;
144
144
                list[count++] = g_strconcat("fe_", name, NULL);
 
145
                list[count++] = g_strconcat("fe_common_", name, NULL);
145
146
        }
146
147
        list[count] = NULL;
147
148