~ubuntu-branches/debian/sid/claws-mail/sid

« back to all changes in this revision

Viewing changes to src/action.c

  • Committer: Package Import Robot
  • Author(s): Ricardo Mones
  • Date: 2015-08-18 16:37:25 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20150818163725-1it32n9mzqkwy2ef
Tags: 3.12.0-1
* New upstream release:
- 'cannot reorganize mailboxes' (Closes: #777208)
- 'dropdown menu bar has disappeared…'(Closes: #778886)
- 'depends on plugins libraries'  (Closes: #779824)
- 'new upstream version (3.12.0)…' (Closes: #793665)
* 14CVE_2010_5109.patch, 15fix_crash_open_folder.patch,
  13desktop_file_categories.patch
- Remove patches applied upstream
* debian/control, debian/copyright, debian/claws-mail-managesieve*
- Add managesieve plugin (new in this release)
* debian/rules
- Set perl-plugin manpage release version automatically
* 12fix_manpage_header.patch
- Update patch to cope with upstream changes
* debian/control, debian/watch
- Update VCS-* and watch URLs (thanks Julian Wollrath)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3
 
 * Copyright (C) 1999-2013 Hiroyuki Yamamoto & The Claws Mail Team
 
2
 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
 
3
 * Copyright (C) 1999-2015 Hiroyuki Yamamoto & The Claws Mail Team
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17
 
 * 
 
17
 *
18
18
 */
19
19
 
20
20
#ifdef HAVE_CONFIG_H
434
434
        g_free(filename);
435
435
 
436
436
        if (ret < 0) {
437
 
                alertpanel_error(_("Can't get part of multipart message: %s"), strerror(-ret));
 
437
                alertpanel_error(_("Can't get part of multipart message: %s"), g_strerror(-ret));
438
438
                g_free(part_filename);
439
439
                return FALSE;
440
440
        }
1043
1043
                        r = close(chld_in);
1044
1044
                child_info->chld_in = -1; /* No more input */
1045
1045
                if (r != 0)
1046
 
                        debug_print("%s(%d)", strerror(errno), errno);
 
1046
                        debug_print("%s(%d)", g_strerror(errno), errno);
1047
1047
        }
1048
1048
 
1049
1049
        return child_info;
1510
1510
        r = close(child_info->chld_in);
1511
1511
        child_info->chld_in = -1;
1512
1512
        if (r != 0)
1513
 
                debug_print("%s(%d)", strerror(errno), errno);
 
1513
                debug_print("%s(%d)", g_strerror(errno), errno);
1514
1514
        child_info->chld_in = -1;
1515
1515
        debug_print("Input to grand child sent.\n");
1516
1516
}