From 4ace5eac373b9d508426671b1a7bccd7b0d7c283 Mon Sep 17 00:00:00 2001 From: Andre McCurdy Date: Thu, 11 Aug 2016 03:20:45 -0700 Subject: syslog-ng: remove unused patches Remove various patches no longer referenced by SRC_URI. Signed-off-by: Andre McCurdy Signed-off-by: Martin Jansa Signed-off-by: Armin Kuster --- .../logwriter-dont-allocate-a-new-buffer.patch | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch (limited to 'meta-oe/recipes-support/syslog-ng/files/logwriter-dont-allocate-a-new-buffer.patch') 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 ---- ---- 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); -- cgit 1.2.3-korg