Variable commas in flow-export.c was not initialized prior to usage. This was causing commas in the SQL export to be mangled. Fixed.

Cheers,
Ben Feinstein, CISSP
VP / CTO, Audiun Inc.

---

diff -Naru flow-tools-0.68/src/flow-export.c flow-tools-0.68-patched/src/flow-export.c
--- flow-tools-0.68/src/flow-export.c    2004-03-30 22:11:14.000000000 -0500
+++ flow-tools-0.68-patched/src/flow-export.c 2006-03-23 22:15:25.000000000 -0500
@@ -961,7 +961,7 @@

int fmt_xfields_type(char *buf, u_int64 xfield)
{
-  int comma;
+  int comma = 0;

  buf[0] = 0;

_______________________________________________
Flow-tools mailing list
[EMAIL PROTECTED]
http://mailman.splintered.net/mailman/listinfo/flow-tools

Reply via email to