diff options
author | Alexey Dobriyan <adobriyan@mail.ru> | 2005-06-02 20:01:16 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-06-02 20:01:16 -0500 |
commit | 36358c21423d58dde90aedde2b8517192c4092f4 (patch) | |
tree | 46e5913ef683c48d9aaefe3e087ad791b1c4a30c /fs/cifs/netmisc.c | |
parent | d0d2f2df65ddea9a30ddd117f769bfff65d3fc56 (diff) | |
download | linux-36358c21423d58dde90aedde2b8517192c4092f4.tar.bz2 |
[CIFS] fs/cifs/netmisc.c: fix sparse warning
Signed-off-by: Steve French <sfrench@us.ibm.com>
Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru>
Signed-off-by: Domen Puncer <domen@coderock.org>
Diffstat (limited to 'fs/cifs/netmisc.c')
-rw-r--r-- | fs/cifs/netmisc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c index a92af41d4411..873b812c0f40 100644 --- a/fs/cifs/netmisc.c +++ b/fs/cifs/netmisc.c @@ -133,7 +133,6 @@ static const struct smb_to_posix_error mapping_table_ERRHRD[] = { 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 *cp,void *dst) 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 */ } |