Skip to content

Commit

Permalink
Use the new --use-kerberos option for smbclient (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
np422 authored Dec 19, 2024
1 parent 1ed557b commit 790c69d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sambal/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def option_flags(options)
flags += ['--port', options[:port]] if options[:port]
flags += ['--name-resolve', options[:name_resolve]] if options[:name_resolve]
flags += ['--configfile', (options[:configfile] ? options[:configfile] : '/dev/null')]
flags += ['--kerberos'] if options[:kerberos]
flags += ['--use-kerberos', options[:use_kerberos]] if options[:use_kerberos]
flags.map(&:to_s)
end
end
Expand Down

0 comments on commit 790c69d

Please sign in to comment.