|
*** ../gbuffy-0.2.4/imap.c Wed Mar 21 21:25:06 2001
--- imap.c Tue Jan 29 18:50:17 2002
***************
*** 542,551 ****
--- 542,553 ----
{
s = imap_next_word (buf);
if (strncasecmp ("STATUS", s, 6) == 0)
{
s = imap_next_word (s);
+ if (*s == '"')
+ ++s;
if (strncmp (ibox->path, s, strlen (ibox->path)) == 0)
{
s = imap_next_word (s);
if (*s == '(')
s++;
|