Skip to content

Commit 492d2fb

Browse files
committed
fixed accessible issues
1 parent af53591 commit 492d2fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ fn infer_batch_size(opts: &Opts, ulimit: rlimit::rlim) -> u16 {
260260
// ulimit is smaller than aveage batch size
261261
// user must have very small ulimit
262262
// decrease batch size to half of ulimit
263-
warning!("Your file limit is very small, which negatively impacts RustScan's speed. Use the Docker image, or up the Ulimit with '--ulimit 5000'. ");
263+
warning!("Your file limit is very small, which negatively impacts RustScan's speed. Use the Docker image, or up the Ulimit with '--ulimit 5000'. ", opts.greppable, opts.accessible);
264264
info!("Halving batch_size because ulimit is smaller than average batch size");
265265
batch_size = ulimit / 2
266266
} else if ulimit > DEFAULT_FILE_DESCRIPTORS_LIMIT {

0 commit comments

Comments
 (0)