summaryrefslogtreecommitdiffstats
path: root/output/mysql
diff options
context:
space:
mode:
authorlaforge <laforge>2005-11-24 20:50:42 +0000
committerlaforge <laforge>2005-11-24 20:50:42 +0000
commitb9c40faf82c012086b261f482fc6e50980283c54 (patch)
tree1e44ea12667b77bbbe7e112e013b21d5591d64b3 /output/mysql
parentd3674c4b3ff09533e2815eb5a72e86e7fb57bb1c (diff)
remove bogus comment (code was fixed, comment not removed)
Diffstat (limited to 'output/mysql')
-rw-r--r--output/mysql/ulogd_output_MYSQL.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/output/mysql/ulogd_output_MYSQL.c b/output/mysql/ulogd_output_MYSQL.c
index 4e75590..b3e63e0 100644
--- a/output/mysql/ulogd_output_MYSQL.c
+++ b/output/mysql/ulogd_output_MYSQL.c
@@ -272,9 +272,9 @@ static int mysql_createstmt(struct ulogd_pluginstance *upi)
free(mi->stmt);
/* caclulate the size for the insert statement */
- size = strlen(MYSQL_INSERTTEMPL) + strlen(table_ce(upi->config_kset).u.string);
+ size = strlen(MYSQL_INSERTTEMPL) +
+ strlen(table_ce(upi->config_kset).u.string);
- /* FIXME: we don't know the number *Sigh* */
for (i = 0; i < upi->input.num_keys; i++) {
/* we need space for the key and a comma, as well as
* enough space for the values */