From a2ebab10e2f0e54122b3f8afa852971454c00bfb Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 20 Mar 2020 09:40:23 +0100 Subject: [PATCH] nfs: fix buffering code using wrong dir --- rust/src/nfs/nfs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/nfs/nfs.rs b/rust/src/nfs/nfs.rs index 365f949907..0879d3a31f 100644 --- a/rust/src/nfs/nfs.rs +++ b/rust/src/nfs/nfs.rs @@ -1093,7 +1093,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 => { -- 2.47.2