summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2014-09-08 11:01:57 +0000
committertrasz <trasz@FreeBSD.org>2014-09-08 11:01:57 +0000
commit7105bcbd7033df43d3610ebff2ba0f0735044946 (patch)
tree8987dd61226691dec97e03d70af49f225b08a69b
parent4826dbd2da63d3a24699446af898476913e861f0 (diff)
downloadFreeBSD-src-7105bcbd7033df43d3610ebff2ba0f0735044946.zip
FreeBSD-src-7105bcbd7033df43d3610ebff2ba0f0735044946.tar.gz
Make it possible to use empty user name ("-U ''") for mount_smbfs(8).
It's just like "-U guest", except that it actually works, at least with Samba 4, which seems to return authentication failure for "-U guest". MFC after: 1 month Sponsored by: The FreeBSD Foundation
-rw-r--r--contrib/smbfs/lib/smb/ctx.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/smbfs/lib/smb/ctx.c b/contrib/smbfs/lib/smb/ctx.c
index c7b3ecab..2458607 100644
--- a/contrib/smbfs/lib/smb/ctx.c
+++ b/contrib/smbfs/lib/smb/ctx.c
@@ -191,10 +191,6 @@ smb_ctx_parseunc(struct smb_ctx *ctx, const char *unc, int sharetype,
smb_error("no user name required", 0);
return EINVAL;
}
- if (*p1 == 0) {
- smb_error("empty user name", 0);
- return EINVAL;
- }
error = smb_ctx_setuser(ctx, tmp);
if (error)
return error;
@@ -521,11 +517,6 @@ smb_ctx_resolve(struct smb_ctx *ctx)
smb_error("no server name specified", 0);
return EINVAL;
}
- if (ssn->ioc_user[0] == 0) {
- smb_error("no user name specified for server %s",
- 0, ssn->ioc_srvname);
- return EINVAL;
- }
if (ctx->ct_minlevel >= SMBL_SHARE && sh->ioc_share[0] == 0) {
smb_error("no share name specified for %s@%s",
0, ssn->ioc_user, ssn->ioc_srvname);
OpenPOWER on IntegriCloud