mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
While I'm here, use the official patchset instead of the custom ones and reflect the port revision in the version number. Submitted by: Reinhard Speyerer <rspmn@arcor.de> Approved by: portmgr (krion)
17 lines
325 B
C
17 lines
325 B
C
#
|
|
# Fix brace expansion following quoted text
|
|
#
|
|
# http://lists.gnu.org/archive/html/bug-bash/2004-09/msg00255.html
|
|
#
|
|
--- braces.c.orig Wed Sep 8 11:07:53 2004
|
|
+++ braces.c Fri Sep 17 18:42:36 2004
|
|
@@ -402,7 +402,8 @@
|
|
{
|
|
pass_next = 1;
|
|
i++;
|
|
- level++;
|
|
+ if (quoted == 0)
|
|
+ level++;
|
|
continue;
|
|
}
|
|
#endif
|