summaryrefslogtreecommitdiffstatsabout
path: root/mod_log_sql.c
diff options
context:
space:
mode:
authorChristopher Powell <chris@grubbybaby.com>2002-04-08 07:06:20 (GMT)
committer Christopher Powell <chris@grubbybaby.com>2002-04-08 07:06:20 (GMT)
commit13e1ecc20c883f71b54bf1fe09488b028e51171e (patch)
tree763d7df4eeab23756b3c8b127ce2b11705a27e86 /mod_log_sql.c
parent6658b33346d0ea8e4cc3724d9347bd3322efd7d7 (diff)
Fixed buglet with preserve file (needed semicolon) and updated README.1.15
Diffstat (limited to 'mod_log_sql.c')
-rw-r--r--mod_log_sql.c4
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