From 65f962c283179db641b4cabdca5b9b16df73f980 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 4 Feb 2009 09:57:42 -0800 Subject: [PATCH] don't duplicate string on password or account prompt --- bti.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bti.c b/bti.c index 09a31f4..b4af7f0 100644 --- a/bti.c +++ b/bti.c @@ -513,12 +513,12 @@ int main(int argc, char *argv[], char *envp[]) if (!session->account) { fprintf(stdout, "Enter twitter account: "); - session->account = get_string_from_stdin("account: "); + session->account = get_string_from_stdin(""); } if (!session->password) { fprintf(stdout, "Enter twitter password: "); - session->password = get_string_from_stdin("password: "); + session->password = get_string_from_stdin(""); } if (session->bash) -- 2.39.5