aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2016-08-11 03:20:45 -0700
committerArmin Kuster <akuster808@gmail.com>2016-11-03 08:16:55 -0700
commit4ace5eac373b9d508426671b1a7bccd7b0d7c283 (patch)
treeb598b59b522c2b2327ec382b5312df9ccf533ff7 /meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
parent5882ba7f378acc75385e8a3ab00a6bdbc7a0ef93 (diff)
downloadmeta-openembedded-contrib-4ace5eac373b9d508426671b1a7bccd7b0d7c283.tar.gz
syslog-ng: remove unused patches
Remove various patches no longer referenced by SRC_URI. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch')
-rw-r--r--meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch b/meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
deleted file mode 100644
index 9e3d64bbf2..0000000000
--- a/meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-logwriter: Don't allocate a new buffer if fails to consume current item
-
-Upstream-Status: Pending
-
-Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
----
---- a/lib/logwriter.c
-+++ b/lib/logwriter.c
-@@ -1010,7 +1010,7 @@
- {
- status = log_proto_client_post(proto, (guchar *) self->line_buffer->str, self->line_buffer->len, &consumed);
-
-- if (consumed)
-+ if (consumed && status != LPS_ERROR)
- log_writer_realloc_line_buffer(self);
-
- if (status == LPS_ERROR)
-@@ -1028,7 +1028,7 @@
- NULL);
- consumed = TRUE;
- }
-- if (consumed)
-+ if (consumed && status != LPS_ERROR)
- {
- if (lm->flags & LF_LOCAL)
- step_sequence_number(&self->seq_num);