]> ToastFreeware Gitweb - gregoa/bti.git/blobdiff - bti.c
don't duplicate string on password or account prompt
[gregoa/bti.git] / bti.c
diff --git a/bti.c b/bti.c
index 09a31f4b7a9e8cb9960cdf6e75695253f402d353..b4af7f0a349db889ff868771961f7cfa701d727c 100644 (file)
--- 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)