--- lbbs/src/menu_proc.c 2005/05/06 16:15:28 1.2 +++ lbbs/src/menu_proc.c 2005/05/07 09:28:12 1.3 @@ -85,11 +85,19 @@ license (const char *s) int copyright (const char *s) { - char temp[256]; + char temp[256]; strcpy (temp, app_home_dir); strcat (temp, "data/copyright.txt"); display_file_ex (temp, 0, 1); - return REDRAW; + return REDRAW; +} + +int +notify_reload_menu (const char *s) +{ + kill (0, SIG_RELOAD_MENU); + + return REDRAW; }