/[LeafOK_CVS]/lbbs/src/menu_proc.c
ViewVC logotype

Diff of /lbbs/src/menu_proc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.42 by sysadm, Tue Oct 21 11:11:28 2025 UTC Revision 1.43 by sysadm, Wed Oct 22 04:48:53 2025 UTC
# Line 345  int favor_topic(void *param) Line 345  int favor_topic(void *param)
345          return REDRAW;          return REDRAW;
346  }  }
347    
348  int user_list(void *param)  int list_user(void *param)
349  {  {
350          if (user_list_display() < 0)          if (user_list_display(0) < 0)
351          {          {
352                  log_error("user_list_display() error\n");                  log_error("user_list_display(all_user) error\n");
353            }
354    
355            return REDRAW;
356    }
357    
358    int list_online_user(void *param)
359    {
360            if (user_list_display(1) < 0)
361            {
362                    log_error("user_list_display(online_user) error\n");
363          }          }
364    
365          return REDRAW;          return REDRAW;


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1