diff options
author | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-09 15:18:10 +0000 |
---|---|---|
committer | Emanuele Giaquinta <exg@gentoo.org> | 2006-10-09 15:18:10 +0000 |
commit | 0b32c1538292cdaa9aed506f673f51d9ca7d42f8 (patch) | |
tree | e5d8ba1dd103cca738f8f200014ef1c45519d064 /app-shells/dash/files | |
parent | Marking sparc, amd64 stable; cleaning out stale ebuilds (diff) | |
download | historical-0b32c1538292cdaa9aed506f673f51d9ca7d42f8.tar.gz historical-0b32c1538292cdaa9aed506f673f51d9ca7d42f8.tar.bz2 historical-0b32c1538292cdaa9aed506f673f51d9ca7d42f8.zip |
Fix pattern matching with a non-matching character class by
askwar@digitalprojects.com, bug #150030.
Package-Manager: portage-2.1.2_pre2-r7
Diffstat (limited to 'app-shells/dash/files')
-rw-r--r-- | app-shells/dash/files/dash-0.5.3.3-non-matching-charclass.patch | 11 | ||||
-rw-r--r-- | app-shells/dash/files/digest-dash-0.5.3.3-r1 | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/app-shells/dash/files/dash-0.5.3.3-non-matching-charclass.patch b/app-shells/dash/files/dash-0.5.3.3-non-matching-charclass.patch new file mode 100644 index 000000000000..3af461aeb68f --- /dev/null +++ b/app-shells/dash/files/dash-0.5.3.3-non-matching-charclass.patch @@ -0,0 +1,11 @@ +--- dash-0.5.3.orig/src/expand.c 2005-11-26 04:17:55.000000000 +0100 ++++ dash-0.5.3/src/expand.c 2006-10-04 10:02:08.186753039 +0200 +@@ -1581,7 +1581,7 @@ + if (c == '[') { + const char *r; + +- found |= ccmatch(p, chr, &r); ++ found |= !!ccmatch(p, chr, &r); + if (r) { + p = r; + continue; diff --git a/app-shells/dash/files/digest-dash-0.5.3.3-r1 b/app-shells/dash/files/digest-dash-0.5.3.3-r1 new file mode 100644 index 000000000000..3a812e7045c6 --- /dev/null +++ b/app-shells/dash/files/digest-dash-0.5.3.3-r1 @@ -0,0 +1,6 @@ +MD5 d90f816432ab5055f37abf0441018bf6 dash_0.5.3-3.diff.gz 26636 +RMD160 35609c510d0b4bcf0a4c9101ad97d1100711b10d dash_0.5.3-3.diff.gz 26636 +SHA256 8f70dfec8f1f1c72da38cec2f94b2ad6f9af825cd6ff3d945369a98fbd89eb07 dash_0.5.3-3.diff.gz 26636 +MD5 1a3cd6669459be4344ec55ec9d4914f8 dash_0.5.3.orig.tar.gz 207201 +RMD160 fd445535708868fe206852320eece58c3c2bbbaf dash_0.5.3.orig.tar.gz 207201 +SHA256 82aab2ff63e5fac4bff35c91222f735ec67551db86b5c3b3455ecc10e8889e53 dash_0.5.3.orig.tar.gz 207201 |