diff options
Diffstat (limited to 'meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch')
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch b/meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch deleted file mode 100644 index 853de6af98..0000000000 --- a/meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | From 82839c3c0371ca2a1643a99d7d01f5bc1c850b28 Mon Sep 17 00:00:00 2001 | ||
2 | From: David Oberhollenzer <david.oberhollenzer@sigma-star.at> | ||
3 | Date: Thu, 2 Mar 2017 11:40:36 +0100 | ||
4 | Subject: [PATCH] Replace rpmatch() usage with checking first character of line | ||
5 | |||
6 | This is based on the patch from Khem Raj used by openembedded. In | ||
7 | addition to the original patch, this also removes the fallback | ||
8 | implementation that was provided for C libraries that don't implement | ||
9 | rpmatch. | ||
10 | |||
11 | Upstream-Status: Backport | ||
12 | |||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at> | ||
15 | --- | ||
16 | include/common.h | 25 ++++++------------------- | ||
17 | 1 file changed, 6 insertions(+), 19 deletions(-) | ||
18 | |||
19 | diff --git a/include/common.h b/include/common.h | ||
20 | index d0c706d..d609257 100644 | ||
21 | --- a/include/common.h | ||
22 | +++ b/include/common.h | ||
23 | @@ -129,21 +129,6 @@ extern "C" { | ||
24 | fprintf(stderr, "%s: warning!: " fmt "\n", PROGRAM_NAME, ##__VA_ARGS__); \ | ||
25 | } while(0) | ||
26 | |||
27 | -/* uClibc versions before 0.9.34 and musl don't have rpmatch() */ | ||
28 | -#if defined(__UCLIBC__) && \ | ||
29 | - (__UCLIBC_MAJOR__ == 0 && \ | ||
30 | - (__UCLIBC_MINOR__ < 9 || \ | ||
31 | - (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 34))) || \ | ||
32 | - !defined(__GLIBC__) | ||
33 | -#undef rpmatch | ||
34 | -#define rpmatch __rpmatch | ||
35 | -static inline int __rpmatch(const char *resp) | ||
36 | -{ | ||
37 | - return (resp[0] == 'y' || resp[0] == 'Y') ? 1 : | ||
38 | - (resp[0] == 'n' || resp[0] == 'N') ? 0 : -1; | ||
39 | -} | ||
40 | -#endif | ||
41 | - | ||
42 | /** | ||
43 | * prompt the user for confirmation | ||
44 | */ | ||
45 | @@ -164,10 +149,12 @@ static inline bool prompt(const char *msg, bool def) | ||
46 | } | ||
47 | |||
48 | if (strcmp("\n", line) != 0) { | ||
49 | - switch (rpmatch(line)) { | ||
50 | - case 0: ret = false; break; | ||
51 | - case 1: ret = true; break; | ||
52 | - case -1: | ||
53 | + switch (line[0]) { | ||
54 | + case 'N': | ||
55 | + case 'n': ret = false; break; | ||
56 | + case 'Y': | ||
57 | + case 'y': ret = true; break; | ||
58 | + default: | ||
59 | puts("unknown response; please try again"); | ||
60 | continue; | ||
61 | } | ||
62 | -- | ||
63 | 2.6.1 | ||