Show
Ignore:
Timestamp:
1999-12-09 03:17:04 (9 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Tommi Komulainen's multiple IMAP usernames patch.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • browser.c

    r1383 r1414  
    809809        { 
    810810          char msg[LONG_STRING]; 
    811           char* mbox; 
     811          IMAP_MBOX mx; 
    812812          int nentry = menu->current; 
    813813           
    814           imap_parse_path (state.entry[nentry].name, NULL, 0, NULL, 
    815             NULL, &mbox); 
     814          imap_parse_path (state.entry[nentry].name, &mx); 
    816815          snprintf (msg, sizeof (msg), _("Really delete mailbox \"%s\"?"), 
    817             mbox); 
     816            mx.mbox); 
    818817          if (mutt_yesorno (msg, M_NO) == M_YES) 
    819818          { 
    820             if (!imap_delete_mailbox (Context, mbox)) 
     819            if (!imap_delete_mailbox (Context, mx.mbox)) 
    821820            { 
    822821              /* free the mailbox from the browser */