summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch')
-rw-r--r--meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch8
1 files changed, 3 insertions, 5 deletions
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch
index 9791412e4..3bc081d4e 100644
--- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch
+++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch
@@ -1,15 +1,16 @@
1From b4e120f5edf06e6df138b1804a8b5180584cea6b Mon Sep 17 00:00:00 2001 1From cf97079009ba48d10e52052b2eab7461ea4dd09b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 10 Jul 2017 20:42:50 -0700 3Date: Mon, 10 Jul 2017 20:42:50 -0700
4Subject: [PATCH] mkfifo: Implement mkfifo 4Subject: [PATCH] mkfifo: Implement mkfifo
5 5
6Signed-off-by: Khem Raj <raj.khem@gmail.com> 6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7
7--- 8---
8 usr/utils/mkfifo.c | 5 +++++ 9 usr/utils/mkfifo.c | 5 +++++
9 1 file changed, 5 insertions(+) 10 1 file changed, 5 insertions(+)
10 11
11diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c 12diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c
12index 5a758b2a..f1f577e6 100644 13index 5a758b2..f1f577e 100644
13--- a/usr/utils/mkfifo.c 14--- a/usr/utils/mkfifo.c
14+++ b/usr/utils/mkfifo.c 15+++ b/usr/utils/mkfifo.c
15@@ -26,6 +26,11 @@ static int make_fifo(char *dir) 16@@ -26,6 +26,11 @@ static int make_fifo(char *dir)
@@ -24,6 +25,3 @@ index 5a758b2a..f1f577e6 100644
24 int main(int argc, char *argv[]) 25 int main(int argc, char *argv[])
25 { 26 {
26 int c, ret = 0; 27 int c, ret = 0;
27--
282.13.2
29