summaryrefslogtreecommitdiffstats
path: root/account.c
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2005-08-07 16:45:35 +0000
committerBrendan Cully <brendan@kublai.com>2005-08-07 16:45:35 +0000
commit57df8c937738760611efd6b5d2951a18f5165b21 (patch)
treefaa7e7052c99719bd85de4a2a0e2f1ae07ae2e43 /account.c
parentef1131f7276a5488f52c4c7b60793515ab650809 (diff)
Reuse mutt_get_field for mutt_get_field_unbuffered.
Diffstat (limited to 'account.c')
-rw-r--r--account.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/account.c b/account.c
index 99146629..d20d2fe1 100644
--- a/account.c
+++ b/account.c
@@ -153,7 +153,7 @@ int mutt_account_getuser (ACCOUNT* account)
{
snprintf (prompt, sizeof (prompt), _("Username at %s: "), account->host);
strfcpy (account->user, NONULL (Username), sizeof (account->user));
- if (mutt_get_string_unbuffered (prompt, account->user, sizeof (account->user), 0))
+ if (mutt_get_field_unbuffered (prompt, account->user, sizeof (account->user), 0))
return -1;
}