Displaying 4 results from an estimated 4 matches for "9079b74b".
Did you mean:
0079b78b
2019 Jan 25
0
[klibc:update-dash] expand - Fix dangling left square brackets in patterns
...ohansson <olof at ethup.se>
Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
usr/dash/expand.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/usr/dash/expand.c b/usr/dash/expand.c
index 9079b74b..e2d563fe 100644
--- a/usr/dash/expand.c
+++ b/usr/dash/expand.c
@@ -1584,14 +1584,14 @@ pmatch(const char *pattern, const char *string)
p++;
}
found = 0;
- chr = *q++;
+ chr = *q;
if (chr == '\0')
return 0;
c = *p++;
do {
if (!c) {
p = startp;
-...
2020 Mar 28
0
[klibc:update-dash] dash: expand - Fix dangling left square brackets in patterns
...ohansson <olof at ethup.se>
Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
---
usr/dash/expand.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/usr/dash/expand.c b/usr/dash/expand.c
index 9079b74b..e2d563fe 100644
--- a/usr/dash/expand.c
+++ b/usr/dash/expand.c
@@ -1584,14 +1584,14 @@ pmatch(const char *pattern, const char *string)
p++;
}
found = 0;
- chr = *q++;
+ chr = *q;
if (chr == '\0')
return 0;
c = *p++;
do {
if (!c) {
p = startp;
-...
2019 Jan 25
0
[klibc:update-dash] builtin: Fix handling of trailing IFS white spaces
...decadent.org.uk>
---
usr/dash/expand.c | 111 ++++++++++++++++++++++++++++++++++++---------------
usr/dash/expand.h | 2 +-
usr/dash/miscbltin.c | 30 ++------------
3 files changed, 83 insertions(+), 60 deletions(-)
diff --git a/usr/dash/expand.c b/usr/dash/expand.c
index c04ff6e1..9079b74b 100644
--- a/usr/dash/expand.c
+++ b/usr/dash/expand.c
@@ -50,6 +50,7 @@
#include <glob.h>
#endif
#include <ctype.h>
+#include <stdbool.h>
/*
* Routines to expand arguments to commands. We have to deal with
@@ -203,7 +204,7 @@ expandarg(union node *arg, struct arglist *ar...
2020 Mar 28
0
[klibc:update-dash] dash: builtin: Fix handling of trailing IFS white spaces
...decadent.org.uk>
---
usr/dash/expand.c | 111 ++++++++++++++++++++++++++++++++++++---------------
usr/dash/expand.h | 2 +-
usr/dash/miscbltin.c | 30 ++------------
3 files changed, 83 insertions(+), 60 deletions(-)
diff --git a/usr/dash/expand.c b/usr/dash/expand.c
index c04ff6e1..9079b74b 100644
--- a/usr/dash/expand.c
+++ b/usr/dash/expand.c
@@ -50,6 +50,7 @@
#include <glob.h>
#endif
#include <ctype.h>
+#include <stdbool.h>
/*
* Routines to expand arguments to commands. We have to deal with
@@ -203,7 +204,7 @@ expandarg(union node *arg, struct arglist *ar...