[patch 3/3] fs/cifs/netmisc.c: fix sparse warning
domen at coderock.org
domen at coderock.org
Mon Jun 20 21:55:38 GMT 2005
From: Alexey Dobriyan <adobriyan at mail.ru>
Signed-off-by: Alexey Dobriyan <adobriyan at mail.ru>
Signed-off-by: Domen Puncer <domen at coderock.org>
---
netmisc.c | 4 +---
1 files changed, 1 insertion(+), 3 deletions(-)
Index: quilt/fs/cifs/netmisc.c
===================================================================
--- quilt.orig/fs/cifs/netmisc.c
+++ quilt/fs/cifs/netmisc.c
@@ -133,7 +133,6 @@ static const struct smb_to_posix_error m
int
cifs_inet_pton(int address_family, char *cp,void *dst)
{
- struct in_addr address;
int value;
int digit;
int i;
@@ -190,8 +189,7 @@ cifs_inet_pton(int address_family, char
if (value > addr_class_max[end - bytes])
return 0;
- address.s_addr = *((__be32 *) bytes) | htonl(value);
- *((__be32 *)dst) = address.s_addr;
+ *((__be32 *)dst) = *((__be32 *) bytes) | htonl(value);
return 1; /* success */
}
--
More information about the samba-technical
mailing list