Subversion Repositories wimsdev

Rev

Rev 12224 | Rev 12288 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12224 Rev 12277
Line 340... Line 340...
340
/* It is this routine which is called by main(). */
340
/* It is this routine which is called by main(). */
341
void write_logs(void)
341
void write_logs(void)
342
{
342
{
343
  char *p;
343
  char *p;
344
  p=getvar(ro_name[ro_cmd]); if(p==NULL || *p==0) p="no_cmd";
344
  p=getvar(ro_name[ro_cmd]); if(p==NULL || *p==0) p="no_cmd";
-
 
345
  access_log(p);
345
  access_log(p); if(strstr(session_prefix,"_check")!=NULL) return;
346
  if(strstr(session_prefix,"_check")!=NULL) return;
346
  module_log(); referer_log();
347
  module_log(); referer_log();
347
  if(new_session) session_log(p);
348
  if(new_session) session_log(p);
348
}
349
}
349
 
350
 
350
void user_error_log(char msg[])
351
void user_error_log(char msg[])