diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-13 04:55:44 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-13 04:55:44 +0800 |
commit | 6653fc8be6ca8e43589662b188ec3cf7d3a6f478 (patch) | |
tree | 9b6a3027a4600e7410237d49911a49d0907b7fe2 /camel | |
parent | 262daabe04da928199a8c57e0345b70ddfec836c (diff) | |
download | gsoc2013-evolution-6653fc8be6ca8e43589662b188ec3cf7d3a6f478.tar.gz gsoc2013-evolution-6653fc8be6ca8e43589662b188ec3cf7d3a6f478.tar.zst gsoc2013-evolution-6653fc8be6ca8e43589662b188ec3cf7d3a6f478.zip |
type-o fix for bug #58404
svn path=/trunk/; revision=25892
Diffstat (limited to 'camel')
-rw-r--r-- | camel/providers/imap4/camel-imap4-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap4/camel-imap4-store.c b/camel/providers/imap4/camel-imap4-store.c index b7b4b4c358..75d45830bf 100644 --- a/camel/providers/imap4/camel-imap4-store.c +++ b/camel/providers/imap4/camel-imap4-store.c @@ -780,7 +780,7 @@ imap4_create_folder (CamelStore *store, const char *parent_name, const char *fol if (*c == store->dir_sep || strchr ("#%*", *c)) { camel_exception_setv (ex, CAMEL_EXCEPTION_FOLDER_INVALID_PATH, _("The folder name \"%s\" is invalid because " - "it containes the character \"%c\""), + "it contains the character \"%c\""), folder_name, *c); return NULL; } |