aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/dns_resolve.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/dns_resolve.c')
-rw-r--r--fs/cifs/dns_resolve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/dns_resolve.c b/fs/cifs/dns_resolve.c
index 91b5500755bf..87948147d7ec 100644
--- a/fs/cifs/dns_resolve.c
+++ b/fs/cifs/dns_resolve.c
@@ -35,7 +35,7 @@
35 * 0 - name is not IP 35 * 0 - name is not IP
36 */ 36 */
37static int 37static int
38is_ip(const char *name) 38is_ip(char *name)
39{ 39{
40 struct sockaddr_storage ss; 40 struct sockaddr_storage ss;
41 41
@@ -57,7 +57,7 @@ dns_resolver_instantiate(struct key *key, const void *data,
57 ip[datalen] = '\0'; 57 ip[datalen] = '\0';
58 58
59 /* make sure this looks like an address */ 59 /* make sure this looks like an address */
60 if (!is_ip((const char *) ip)) { 60 if (!is_ip(ip)) {
61 kfree(ip); 61 kfree(ip);
62 return -EINVAL; 62 return -EINVAL;
63 } 63 }