From: Igor Mammedov Date: Wed, 2 Apr 2008 13:33:47 +0000 (+0400) Subject: Adds username in the upcall key for unattended mounts with keytab X-Git-Tag: v3.12-rc1~20594^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4058245ac0c4d9a517cda688a35aef065cb7f4e;p=kernel%2Fkernel-generic.git Adds username in the upcall key for unattended mounts with keytab Signed-off-by: Igor Mammedov Signed-off-by: Steve French --- diff --git a/fs/cifs/cifs_spnego.c b/fs/cifs/cifs_spnego.c index 6653e29..7013aaf 100644 --- a/fs/cifs/cifs_spnego.c +++ b/fs/cifs/cifs_spnego.c @@ -119,6 +119,9 @@ cifs_get_spnego_key(struct cifsSesInfo *sesInfo) dp = description + strlen(description); sprintf(dp, ";uid=0x%x", sesInfo->linux_uid); + dp = description + strlen(description); + sprintf(dp, ";user=%s", sesInfo->userName); + cFYI(1, ("key description = %s", description)); spnego_key = request_key(&cifs_spnego_key_type, description, "");