summaryrefslogtreecommitdiff
path: root/libetpan/libetpan-cvs/mailstream_socket.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /libetpan/libetpan-cvs/mailstream_socket.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'libetpan/libetpan-cvs/mailstream_socket.patch')
-rw-r--r--libetpan/libetpan-cvs/mailstream_socket.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/libetpan/libetpan-cvs/mailstream_socket.patch b/libetpan/libetpan-cvs/mailstream_socket.patch
deleted file mode 100644
index b02ce46a04..0000000000
--- a/libetpan/libetpan-cvs/mailstream_socket.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- libetpan-0.33pre/tools/mailstream_socket.c~mailstream_socket 2004-03-07 01:59:01.000000000 +0100
-+++ libetpan-0.33pre/tools/mailstream_socket.c 2004-03-11 14:48:47.000000000 +0100
-@@ -44,6 +44,7 @@
- */
- #include <sys/time.h>
- #include <sys/types.h>
-+#include <sys/socket.h>
- #include <unistd.h>
- #include <sys/select.h>
-
-@@ -176,8 +177,8 @@
- if (!FD_ISSET(socket_data->fd, &fds_read))
- return 0;
- }
--
-- return read(socket_data->fd, buf, count);
-+
-+ return recv(socket_data->fd,buf,count,MSG_NOSIGNAL);
- }
-
- static ssize_t mailstream_low_socket_write(mailstream_low * s,
-@@ -207,8 +208,7 @@
- if (!FD_ISSET(socket_data->fd, &fds_write))
- return 0;
- }
--
-- return write(socket_data->fd, buf, count);
-+ return send(socket_data->fd,buf,count,MSG_NOSIGNAL);
- }
-
-