diff options
author | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 15:51:53 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 15:51:53 -0500 |
commit | c62b02a76d203dc7bebb1d8084d71456af4103d8 (patch) | |
tree | 86dd72c704fad08e96ff996e6450e389fe64903c /config/snort | |
parent | 1a62cd67866048dc3df68765494c907611a2aebf (diff) | |
download | pfsense-packages-c62b02a76d203dc7bebb1d8084d71456af4103d8.tar.gz pfsense-packages-c62b02a76d203dc7bebb1d8084d71456af4103d8.tar.bz2 pfsense-packages-c62b02a76d203dc7bebb1d8084d71456af4103d8.zip |
Show all contents of extract
Diffstat (limited to 'config/snort')
-rw-r--r-- | config/snort/snort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index c5c11d0e..4026282f 100644 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -635,7 +635,7 @@ function extract_snort_rules_md5($tmpfname) { /* extract item and show status during extraction */ $handle = popen('$cmd 2>&1', 'r'); while(!feof($handle)) { - $read = fread($handle, 2096); + $read .= fread($handle, 2096); update_output_window($read); } pclose($handle); |