guoyu07 / aspersa

Automatically exported from code.google.com/p/aspersa
0 stars 0 forks source link

collect runs tcpdump no matter what #141

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
   # If TCP dumping is specified, start that on the server's port.
   if [ "${OPT_t}" ]; then

This should be

   # If TCP dumping is specified, start that on the server's port.
   if [ "${OPT_t}" = "yes" ]; then

Original issue reported on code.google.com by baron.schwartz on 6 Apr 2011 at 2:55

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r403.

Original comment by baron.schwartz on 6 Apr 2011 at 2:56