diff options
Diffstat (limited to 'camel/string-utils.c')
-rw-r--r-- | camel/string-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/string-utils.c b/camel/string-utils.c index df973fc01b..3f9ce4805d 100644 --- a/camel/string-utils.c +++ b/camel/string-utils.c @@ -4,7 +4,7 @@ /* * * Author : - * Bertrand Guiheneuf <Bertrand.Guiheneuf@aful.org> + * Bertrand Guiheneuf <bertrand@helixcode.com> * * Copyright 1999, 2000 HelixCode (http://www.helixcode.com) . * @@ -284,7 +284,7 @@ string_prefix (const gchar *s, const gchar *suffix, gboolean *suffix_found) /* if the string is shorter than the suffix, do nothing */ if (s_len < suf_len) { - *suffix_found = FALSE + *suffix_found = FALSE; return NULL; } |