diff options
Diffstat (limited to 'mod_log_sql.c')
-rw-r--r-- | mod_log_sql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod_log_sql.c b/mod_log_sql.c index 62e9784..16deada 100644 --- a/mod_log_sql.c +++ b/mod_log_sql.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: mod_log_sql.c,v 1.7 2002/04/08 06:35:04 helios Exp $ */ | 1 | /* $Id: mod_log_sql.c,v 1.8 2002/04/08 07:06:20 helios Exp $ */ |
2 | 2 | ||
3 | 3 | ||
4 | /* DEFINES */ | 4 | /* DEFINES */ |
@@ -514,7 +514,7 @@ void preserve_entry(request_rec *r, const char *query) | |||
514 | if (fp == NULL) | 514 | if (fp == NULL) |
515 | ap_log_error(APLOG_MARK,ERRLEVEL,r->server,"MySQL: attempted append of local offline file but failed."); | 515 | ap_log_error(APLOG_MARK,ERRLEVEL,r->server,"MySQL: attempted append of local offline file but failed."); |
516 | else | 516 | else |
517 | fprintf(fp,"%s\n", query); | 517 | fprintf(fp,"%s;\n", query); |
518 | fclose(fp); | 518 | fclose(fp); |
519 | } | 519 | } |
520 | 520 | ||