diff options
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index b7eb80e3f6..83c6ef59da 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -9714,13 +9714,12 @@ uint32 lp_get_spoolss_state( void ) Ensure we don't use sendfile if server smb signing is active. ********************************************************************/ -bool lp_use_sendfile(int snum, enum protocol_types proto, - struct smb_signing_state *signing_state) +bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state) { bool sign_active = false; /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */ - if (proto < PROTOCOL_NT1) { + if (get_Protocol() < PROTOCOL_NT1) { return false; } if (signing_state) { |