From 697e1ef4ccb48c3e16b8655b99def083be7c057f Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sat, 17 Dec 2011 02:22:34 -0600 Subject: testing/plymouth: new aport --- testing/plymouth/plymouth-rpmatch.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 testing/plymouth/plymouth-rpmatch.patch (limited to 'testing/plymouth/plymouth-rpmatch.patch') diff --git a/testing/plymouth/plymouth-rpmatch.patch b/testing/plymouth/plymouth-rpmatch.patch new file mode 100644 index 0000000000..f6e1948747 --- /dev/null +++ b/testing/plymouth/plymouth-rpmatch.patch @@ -0,0 +1,17 @@ +--- plymouth-0.8.3.orig/src/libply/ply-command-parser.c ++++ plymouth-0.8.3/src/libply/ply-command-parser.c +@@ -671,6 +671,14 @@ + return argument[0] == '-' && argument[1] == '-'; + } + ++static inline int ++rpmatch (const char *response) ++{ ++ /* Test against "^[yY]" and "^[nN]", hardcoded to avoid requiring regex */ ++ return (*response == 'y' || *response == 'Y' ? 1 ++ : *response == 'n' || *response == 'N' ? 0 : -1); ++} ++ + static bool + ply_command_option_read_arguments (ply_command_option_t *option, + ply_list_t *arguments) -- cgit v1.2.3