Show
Ignore:
Timestamp:
2005-08-06 21:58:12 (3 years ago)
Author:
Brendan Cully <brendan@…>
Branch:
HEAD
Message:

Make username prompts unbuffered like password prompts are (no more
folder-hook push garbage)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • account.c

    r4138 r4149  
    154154    snprintf (prompt, sizeof (prompt), _("Username at %s: "), account->host); 
    155155    strfcpy (account->user, NONULL (Username), sizeof (account->user)); 
    156     if (mutt_get_field (prompt, account->user, sizeof (account->user), 0)) 
     156    if (mutt_get_string_unbuffered (prompt, account->user, sizeof (account->user), 0)) 
    157157      return -1; 
    158158  }