aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2004-08-13 04:20:19 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-08-13 04:20:19 +0800
commit5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050 (patch)
tree5c9ee882b5162d4d1af1c81b0dfdf7855195a63c /camel/camel-mime-utils.c
parent1d5b61d3d0231f70846b14330309e9cd7c827e97 (diff)
downloadgsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar.gz
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar.bz2
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar.lz
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar.xz
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.tar.zst
gsoc2013-evolution-5e090dfdc0332a211f7f9ceb1e57e0dfcd1a7050.zip
use g_string_append_len when appending a subset of a string rather than g_string_append, duh.
svn path=/trunk/; revision=26890
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 314359c654..8ce61e0b4e 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -1151,7 +1151,7 @@ header_decode_text (const char *in, size_t inlen, int ctext, const char *default
append = append_quoted_pair;
} else {
mask = (CAMEL_MIME_IS_LWSP);
- append = g_string_append;
+ append = g_string_append_len;
}
out = g_string_new ("");