Updated fdmax.set with UnixMax value from v0.0.2

master
Víctor Zamanillo 2020-09-19 23:08:34 +02:00
parent 72502b1819
commit afcc4b0223
1 changed files with 1 additions and 1 deletions

View File

@ -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
}