From c1a395bcc2ecbaaba3597fd3144b47fbb3a64578 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 11 Apr 2001 21:39:37 +0000 Subject: Simplify peterw's imap_is_atom_char fix. * providers/imap/camel-imap-utils.c (imap_parse_string_generic): Simplify peterw's imap_is_atom_char fix. svn path=/trunk/; revision=9250 --- camel/providers/imap/camel-imap-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/providers/imap') diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c index e7c0a050ca..acbfe46b23 100644 --- a/camel/providers/imap/camel-imap-utils.c +++ b/camel/providers/imap/camel-imap-utils.c @@ -201,7 +201,7 @@ static char imap_atom_specials[128] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, }; -#define imap_is_atom_char(ch) (isascii (ch) && !imap_atom_specials[ch]) +#define imap_is_atom_char(ch) (isprint (ch) && !imap_atom_specials[ch]) /** * imap_parse_string_generic: @@ -275,7 +275,7 @@ imap_parse_string_generic (char **str_p, int *len, int type) return NULL; } else if (type == IMAP_ASTRING && imap_is_atom_char ((unsigned char)*str)) { - while (imap_is_atom_char ((unsigned char)*str) && *str != '\0') + while (imap_is_atom_char ((unsigned char)*str)) str++; *len = str - *str_p; -- cgit v1.2.3