about summary refs log tree commit diff stats
path: root/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'app.c')
-rw-r--r--app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.c b/app.c
index c1c0cc99..2f01ca12 100644
--- a/app.c
+++ b/app.c
@@ -24,11 +24,11 @@ void start_profanity(void)
             char *user;
             user = strndup(cmd+9, strlen(cmd)-9);
 
-            bar_print_message("Enter password:");
+            inp_bar_print_message("Enter password:");
             char passwd[20];
             inp_get_password(passwd);
 
-            bar_print_message(user);
+            inp_bar_print_message(user);
             jabber_connect(user, passwd);
             main_event_loop();
             break;