X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fscreen.c;h=7a5bdcced0593bcd32d4d2e99d7d7a57e35ded99;hb=ca0714f168ab7cb7af8177e10941aa5c1fa3b09f;hp=70ee4003efc521fbe35f209497fb83a7c2333468;hpb=15036e4105019af481eab5a053d54df4033d8d1d;p=citadel.git diff --git a/citadel/screen.c b/citadel/screen.c index 70ee4003e..7a5bdcced 100644 --- a/citadel/screen.c +++ b/citadel/screen.c @@ -56,7 +56,7 @@ int is_curses_enabled(void) { * status_line() is a convenience function for writing a "typical" * status line to the window. */ -void status_line(const char *humannode, const char *bbs_city, +void status_line(const char *humannode, const char *site_location, const char *room_name, int secure, int newmailcount) { #if defined(HAVE_CURSES_H) && !defined(DISABLE_CURSES) @@ -477,7 +477,7 @@ int scr_set_windowsize(CtdlIPC* ipc) wresize(statuswindow, 1, screenwidth); #endif mvwin(statuswindow, screenheight, 0); - status_line(ipc->ServInfo.humannode, ipc->ServInfo.bbs_city, + status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location, room_name, secure, -1); wnoutrefresh(mainwindow); wnoutrefresh(statuswindow);