diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-11-26 00:16:57 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2008-11-26 00:16:57 +0100 |
commit | 22353928caf9c821e70d15c2dd827c8725f6ac40 (patch) | |
tree | aa2c1475224a178cf9213805ae7b6c241512f02d /include | |
parent | 1bc6f65123550e52c7d37645709931b20ceff2b3 (diff) | |
download | conntrack-tools-22353928caf9c821e70d15c2dd827c8725f6ac40.tar.gz conntrack-tools-22353928caf9c821e70d15c2dd827c8725f6ac40.zip |
fds: remove unused array of file descriptors
This patch removes an unused array of file descriptors inside the
fds structure.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/fds.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/fds.h b/include/fds.h index cc213fe..019d3f9 100644 --- a/include/fds.h +++ b/include/fds.h @@ -3,9 +3,6 @@ struct fds { int maxfd; - int fd_array_len; - int fd_array_cur; - int *fd_array; fd_set readfds; }; |