From afcc4b0223271ea25d8e7ee399d52f5ddd66e1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Zamanillo?= Date: Sat, 19 Sep 2020 23:08:34 +0200 Subject: [PATCH] Updated fdmax.set with UnixMax value from v0.0.2 --- pkg/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/runner/runner.go b/pkg/runner/runner.go index ddfaa2e..f81d47c 100644 --- a/pkg/runner/runner.go +++ b/pkg/runner/runner.go @@ -42,7 +42,7 @@ func NewRunner(options *Options) (*Runner, error) { func (r *Runner) RunEnumeration(ctx context.Context) error { // Increase the OS file descriptors if r.options.FdMax { - err := fdmax.Set(fdmax.Max) + err := fdmax.Set(fdmax.UnixMax) if err != nil { return err }