diff options
Diffstat (limited to 'source3/client/smbmount.c')
-rw-r--r-- | source3/client/smbmount.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c index 5d1dc64884..2c70f3ff50 100644 --- a/source3/client/smbmount.c +++ b/source3/client/smbmount.c @@ -157,9 +157,6 @@ static struct cli_state *do_connection(char *the_service) /* SPNEGO doesn't work till we get NTSTATUS error support */ c->use_spnego = False; - /* The kernel doesn't yet know how to sign it's packets */ - c->sign_info.allow_smb_signing = False; - if (!cli_session_request(c, &calling, &called)) { char *p; DEBUG(0,("%d: session request to %s failed (%s)\n", @@ -690,17 +687,6 @@ static void parse_mount_smb(int argc, char **argv) int val; char *p; - /* FIXME: This function can silently fail if the arguments are - * not in the expected order. - - > The arguments syntax of smbmount 2.2.3a (smbfs of Debian stable) - > requires that one gives "-o" before further options like username=... - > . Without -o, the username=.. setting is *silently* ignored. I've - > spent about an hour trying to find out why I couldn't log in now.. - - */ - - if (argc < 2 || argv[1][0] == '-') { usage(); exit(1); |