diff options
Diffstat (limited to 'camel/providers/imap/camel-imap-utils.c')
-rw-r--r-- | camel/providers/imap/camel-imap-utils.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c index df8ddc4f0e..ce547a5198 100644 --- a/camel/providers/imap/camel-imap-utils.c +++ b/camel/providers/imap/camel-imap-utils.c @@ -549,17 +549,6 @@ imap_parse_body (char **body_p, CamelFolder *folder, *body_p = body; } -static void -strip (char *str, char c) -{ - char *src, *dst; - - for (src = dst = str; *src; src++) - if (*src != c) - *dst++ = *src; - *dst = '\0'; -} - /** * imap_quote_string: * @str: the string to quote, which must not contain CR or LF |