diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2012-11-29 17:31:16 +0100 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-12-05 13:27:30 -0600 |
commit | 3c15b4cf5580658951115f85efb2dea6a1380999 (patch) | |
tree | 9b1f5ccf167bb249d3173ae8af560571b5fef13b | |
parent | dd446b16edd74ca525208d924d426f786dd973f8 (diff) | |
download | linux-3.10-3c15b4cf5580658951115f85efb2dea6a1380999.tar.gz linux-3.10-3c15b4cf5580658951115f85efb2dea6a1380999.tar.bz2 linux-3.10-3c15b4cf5580658951115f85efb2dea6a1380999.zip |
cifs: Add handling of blank password option
The option to have a blank "pass=" already exists, and with
a password specified both "pass=%s" and "password=%s" are supported.
Also, both blank "user=" and "username=" are supported, making
"password=" the odd man out.
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <smfrench@gmail.com>
-rw-r--r-- | fs/cifs/connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index d01c7328dba..dec7c15d886 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -186,6 +186,7 @@ static const match_table_t cifs_mount_option_tokens = { { Opt_user, "user=%s" }, { Opt_user, "username=%s" }, { Opt_blank_pass, "pass=" }, + { Opt_blank_pass, "password=" }, { Opt_pass, "pass=%s" }, { Opt_pass, "password=%s" }, { Opt_blank_ip, "ip=" }, |