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

Diff of /lbbs/src/login.c

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

Revision 1.44 by sysadm, Mon Jun 16 09:42:28 2025 UTC Revision 1.45 by sysadm, Tue Jun 17 02:06:48 2025 UTC
# Line 350  int check_user(const char *username, con Line 350  int check_user(const char *username, con
350                  goto cleanup;                  goto cleanup;
351          }          }
352    
353          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
354    
355          // Set user tz to process env          // Set user tz to process env
356          if (BBS_user_tz[0] != '\0')          if (BBS_user_tz[0] != '\0')
# Line 422  int load_user_info(MYSQL *db, int BBS_ui Line 422  int load_user_info(MYSQL *db, int BBS_ui
422          rs = NULL;          rs = NULL;
423    
424          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
425                  time(0) - last_login_dt > 60 * 60 * 24 * life)                  time(NULL) - last_login_dt > 60 * 60 * 24 * life)
426          {          {
427                  ret = -3; // Dead                  ret = -3; // Dead
428                  goto cleanup;                  goto cleanup;
# Line 472  int load_guest_info(void) Line 472  int load_guest_info(void)
472                  goto cleanup;                  goto cleanup;
473          }          }
474    
475          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
476    
477  cleanup:  cleanup:
478          mysql_close(db);          mysql_close(db);


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

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