]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[CIFS] have cifs_get_spnego_key get the hostname from TCP_Server_Info
authorJeff Layton <jlayton@redhat.com>
Fri, 16 Nov 2007 22:23:17 +0000 (22:23 +0000)
committerSteve French <sfrench@us.ibm.com>
Fri, 16 Nov 2007 22:23:17 +0000 (22:23 +0000)
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/cifs_spnego.c
fs/cifs/cifsproto.h

index d79eee41e9c5924a10196297409ab14bfcfc1d84..c466b56e0283c7165bef5cb346a79094a363c58d 100644 (file)
@@ -73,12 +73,13 @@ struct key_type cifs_spnego_key_type = {
 #define MAX_IPV6_ADDR_LEN 42 /* eg FEDC:BA98:7654:3210:FEDC:BA98:7654:3210/60 */
 /* get a key struct with a SPNEGO security blob, suitable for session setup */
 struct key *
-cifs_get_spnego_key(struct cifsSesInfo *sesInfo, const char *hostname)
+cifs_get_spnego_key(struct cifsSesInfo *sesInfo)
 {
        struct TCP_Server_Info *server = sesInfo->server;
        char *description, *dp;
        size_t desc_len;
        struct key *spnego_key;
+       const char *hostname = server->hostname;
 
        /* BB: come up with better scheme for determining length */
        /* length of fields (with semicolons): ver=0xyz ipv4= ipaddress host=
index 0c55dff2add8caafe5bced51c5f92eab88b9288c..3a37c6c67f6f31fc69de3a5fc0330853fe9c8602 100644 (file)
@@ -77,8 +77,7 @@ extern void header_assemble(struct smb_hdr *, char /* command */ ,
 extern int small_smb_init_no_tc(const int smb_cmd, const int wct,
                                struct cifsSesInfo *ses,
                                void **request_buf);
-extern struct key *cifs_get_spnego_key(struct cifsSesInfo *sesInfo,
-                                       const char *hostname);
+extern struct key *cifs_get_spnego_key(struct cifsSesInfo *sesInfo);
 extern int CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses,
                             const int stage,
                             const struct nls_table *nls_cp);