diff mbox

mount.cifs: fix parsing of "cred=" option

Message ID 1275220733-5395-1-git-send-email-jlayton@samba.org
State New
Headers show

Commit Message

Jeff Layton May 30, 2010, 11:58 a.m. UTC
When the mount option parsing was cleaned up recently, the detection of
the "cred=" option was dropped.

Signed-off-by: Jeff Layton <jlayton@samba.org>
---
 mount.cifs.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

Comments

Scott Lovenberg May 30, 2010, 12:26 p.m. UTC | #1
On 05/30/2010 07:58 AM, Jeff Layton wrote:
> When the mount option parsing was cleaned up recently, the detection of
> the "cred=" option was dropped.
>
> Signed-off-by: Jeff Layton<jlayton@samba.org>
> ---
>   mount.cifs.c |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/mount.cifs.c b/mount.cifs.c
> index 326b94e..65754c0 100644
> --- a/mount.cifs.c
> +++ b/mount.cifs.c
> @@ -800,6 +800,8 @@ static int parse_opt_token(const char *token)
>   		return OPT_UNC;
>   	if (strncmp(token, "dom", 3) == 0 || strncmp(token, "workg", 5) == 0)
>   		return OPT_DOM;
> +	if (strncmp(token, "cred", 4) == 0)
> +		return OPT_CRED;
>   	if (strncmp(token, "uid", 3) == 0)
>   		return OPT_UID;
>   	if (strncmp(token, "gid", 3) == 0)
>    
Crap, no idea how I missed that.  Thanks, Jeff.
I found another yesterday (maybe two, I need to get some clarification 
on something).  I've got a patch I'll be sending off later today that 
fixes another parsing error.
diff mbox

Patch

diff --git a/mount.cifs.c b/mount.cifs.c
index 326b94e..65754c0 100644
--- a/mount.cifs.c
+++ b/mount.cifs.c
@@ -800,6 +800,8 @@  static int parse_opt_token(const char *token)
 		return OPT_UNC;
 	if (strncmp(token, "dom", 3) == 0 || strncmp(token, "workg", 5) == 0)
 		return OPT_DOM;
+	if (strncmp(token, "cred", 4) == 0)
+		return OPT_CRED;
 	if (strncmp(token, "uid", 3) == 0)
 		return OPT_UID;
 	if (strncmp(token, "gid", 3) == 0)