From patchwork Wed Feb 20 21:09:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/2] tcp-wrappers: remove size_t.patch Date: Wed, 20 Feb 2013 21:09:47 -0000 From: farrah rashid X-Patchwork-Id: 44953 Message-Id: <1361394588-30527-2-git-send-email-farrah.rashid@windriver.com> To: Incorrect data type for socket calls Signed-off-by: farrah rashid --- .../tcp-wrappers/tcp-wrappers-7.6/size_t.patch | 44 -------------------- 1 files changed, 0 insertions(+), 44 deletions(-) delete mode 100644 meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/size_t.patch diff --git a/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/size_t.patch b/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/size_t.patch deleted file mode 100644 index 8373e8a..0000000 --- a/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/size_t.patch +++ /dev/null @@ -1,44 +0,0 @@ -Upstream-Status: Backport - -diff -ruN tcp_wrappers_7.6.orig/fix_options.c tcp_wrappers_7.6/fix_options.c ---- tcp_wrappers_7.6.orig/fix_options.c 2003-08-21 03:41:33.000000000 +0200 -+++ tcp_wrappers_7.6/fix_options.c 2003-08-21 03:41:27.000000000 +0200 -@@ -38,7 +38,11 @@ - #ifdef IP_OPTIONS - unsigned char optbuf[BUFFER_SIZE / 3], *cp; - char lbuf[BUFFER_SIZE], *lp; -+#ifdef __GLIBC__ -+ size_t optsize = sizeof(optbuf), ipproto; -+#else - int optsize = sizeof(optbuf), ipproto; -+#endif - struct protoent *ip; - int fd = request->fd; - unsigned int opt; -diff -ruN tcp_wrappers_7.6.orig/socket.c tcp_wrappers_7.6/socket.c ---- tcp_wrappers_7.6.orig/socket.c 2003-08-21 03:41:33.000000000 +0200 -+++ tcp_wrappers_7.6/socket.c 2003-08-21 03:40:51.000000000 +0200 -@@ -90,7 +90,11 @@ - static struct sockaddr_in client; - static struct sockaddr_in server; - #endif -+#ifdef __GLIBC__ -+ size_t len; -+#else - int len; -+#endif - char buf[BUFSIZ]; - int fd = request->fd; - -@@ -421,7 +425,11 @@ - #else - struct sockaddr_in sin; - #endif -+#ifdef __GLIBC__ -+ size_t size = sizeof(sin); -+#else - int size = sizeof(sin); -+#endif - - /* - * Eat up the not-yet received datagram. Some systems insist on a