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

« back to all changes in this revision

Viewing changes to src/irc/core/netsplit.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:
309
309
{
310
310
        NETSPLIT_REC *rec;
311
311
 
 
312
        if (nick == NULL)
 
313
                return;
 
314
 
312
315
        /* check if split is over */
313
316
        rec = g_hash_table_lookup(server->splits, nick);
314
317
 
331
334
{
332
335
        NETSPLIT_REC *rec;
333
336
 
 
337
        if (nick == NULL)
 
338
                return;
 
339
 
334
340
        rec = g_hash_table_lookup(server->splits, nick);
335
341
        if (rec != NULL) {
336
342
                g_hash_table_remove(server->splits, rec->nick);