From d2446813f9e14cfdb4e62d1034bc8a844a14131a Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Thu, 17 Feb 2022 16:09:32 +0000 Subject: Fix #2: Don't print header when using `-b`. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index f5abb69..4ddc809 100644 --- a/src/main.rs +++ b/src/main.rs @@ -57,7 +57,7 @@ fn run_file(args: &Args, executor: &mut Executor, file_name: &String) { .as_str(), ) .expect("Failed to parse file"); - let response = executor.execute(bfile).unwrap(); + let response = executor.execute(bfile, args.req_headers()).unwrap(); if args.print_headers() { println!("{} {}", response.status(), response.status_text()); -- cgit v1.2.3