migration from private to rsa
[external/bash.git] / debian / patches / bash-subst-param-length.dpatch
1 #! /bin/sh -e
2
3 if [ $# -eq 3 -a "$2" = '-d' ]; then
4     pdir="-d $3"
5 elif [ $# -ne 1 ]; then
6     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
7     exit 1
8 fi
9 case "$1" in
10     -patch) patch $pdir -f --no-backup-if-mismatch -p0 < $0;;
11     -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p0 < $0;;
12     *)
13         echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
14         exit 1
15 esac
16 exit 0
17
18 DP: ignore array subscript while determining variable name for length
19 DP: substitution
20 DP: (#345861)
21
22 --- ../bash-3.1/subst.c     2006-01-14 01:12:02.000000000 +0100
23 +++ subst.c     2006-01-14 01:12:39.000000000 +0100
24 @@ -5814,7 +5814,7 @@
25      {
26        t_index++;
27        free (name);
28 -      temp1 = string_extract (string, &t_index, "#%:-=?+/}", 0);
29 +      temp1 = string_extract (string, &t_index, "#%:-=?+/}", SX_VARNAME);
30        name = (char *)xmalloc (3 + (strlen (temp1)));
31        *name = string[sindex];
32        if (string[sindex] == '!')