~ubuntu-branches/ubuntu/breezy/evolution-data-server/breezy

« back to all changes in this revision

Viewing changes to camel/providers/imap4/camel-imap4-utils.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-10-10 11:30:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051010113056-rb4vj4kbs8yxft85
Tags: 1.4.1-0ubuntu3
* debian/patches/camel-imap-store.c.patch:
  - Ubuntu 17465: apply patch from
  http://bugzilla.gnome.org/attachment.cgi?id=53234&action=view
  (additional NULL pointer check)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *  Copyright (C) 1999-2004 Jeffrey Stedfast
4
4
 *
5
5
 *  This program is free software; you can redistribute it and/or modify
6
 
 *  it under the terms of the GNU General Public License as published by
 
6
 *  it under the terms of the GNU Lesser General Public License as published by
7
7
 *  the Free Software Foundation; either version 2 of the License, or
8
8
 *  (at your option) any later version.
9
9
 *
10
10
 *  This program is distributed in the hope that it will be useful,
11
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
 
13
 *  GNU Lesser General Public License for more details.
14
14
 *
15
 
 *  You should have received a copy of the GNU General Public License
 
15
 *  You should have received a copy of the GNU Lesser General Public License
16
16
 *  along with this program; if not, write to the Free Software
17
17
 *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
18
18
 */
382
382
                g_string_append (errmsg, token->v.qstring);
383
383
                break;
384
384
        case CAMEL_IMAP4_TOKEN_LITERAL:
385
 
                g_string_append_printf (errmsg, "{%u}", token->v.literal);
 
385
                g_string_append_printf (errmsg, "{%u}", (unsigned int)token->v.literal);
386
386
                break;
387
387
        case CAMEL_IMAP4_TOKEN_NUMBER:
388
388
                g_string_append_printf (errmsg, "%u", token->v.number);