about summary refs log tree commit diff stats
path: root/app.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-08 23:49:46 +0000
committerJames Booth <boothj5@gmail.com>2012-02-08 23:49:46 +0000
commita7190ed7e483c6791e8f05fd3564d31bd17c8cfa (patch)
tree1468facb0abfaa1829a8b258ec6a9bf12ca773a8 /app.c
parentc92b26880924c49de97d70a37620a7bec57cf32d (diff)
downloadprofani-tty-a7190ed7e483c6791e8f05fd3564d31bd17c8cfa.tar.gz
Split window functions
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;