diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-18 18:00:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-18 18:00:12 +0000 |
commit | 5483a19fc3a781a792f80b27782f9aa9e3e03746 (patch) | |
tree | 2b80c1c5a3ed40a756fad6e6ec3e5f23608d86de /include | |
parent | 674576634753191a3e9acd59a80a7da3cf1a337f (diff) | |
download | busybox-w32-5483a19fc3a781a792f80b27782f9aa9e3e03746.tar.gz busybox-w32-5483a19fc3a781a792f80b27782f9aa9e3e03746.tar.bz2 busybox-w32-5483a19fc3a781a792f80b27782f9aa9e3e03746.zip |
tftp: fix wrong check for port numbers
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 8ad92263e..8f3d7f038 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -290,7 +290,7 @@ extern int setsockopt_broadcast(int fd); | |||
290 | 290 | ||
291 | /* "new" (ipv4+ipv6) API */ | 291 | /* "new" (ipv4+ipv6) API */ |
292 | typedef struct len_and_sockaddr { | 292 | typedef struct len_and_sockaddr { |
293 | int len; | 293 | socklen_t len; |
294 | union { | 294 | union { |
295 | struct sockaddr sa; | 295 | struct sockaddr sa; |
296 | struct sockaddr_in sin; | 296 | struct sockaddr_in sin; |