From: Victor Julien Date: Fri, 20 Mar 2020 08:40:23 +0000 (+0100) Subject: nfs: fix buffering code using wrong dir X-Git-Tag: suricata-4.1.8~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4810%2Fhead;p=thirdparty%2Fsuricata.git nfs: fix buffering code using wrong dir (cherry picked from commit a2ebab10e2f0e54122b3f8afa852971454c00bfb) --- diff --git a/rust/src/nfs/nfs.rs b/rust/src/nfs/nfs.rs index 3c38bfa674..9c50dae3d2 100644 --- a/rust/src/nfs/nfs.rs +++ b/rust/src/nfs/nfs.rs @@ -1082,7 +1082,7 @@ impl NFSState { }, 0 => { SCLogDebug!("incomplete, queue and retry with the next block (input {}). Looped {} times.", cur_i.len(), cnt); - self.tcp_buffer_tc.extend_from_slice(cur_i); + self.tcp_buffer_ts.extend_from_slice(cur_i); return 0; }, -1 => {