mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Missing break was screwing up 'y//' command. Bug #248.
This commit is contained in:
parent
92255d60b8
commit
babd3fbba6
1 changed files with 1 additions and 0 deletions
|
|
@ -1025,6 +1025,7 @@ restart:
|
|||
for (j = 0; sed_cmd->string[j]; j += 2) {
|
||||
if (pattern_space[i] == sed_cmd->string[j]) {
|
||||
pattern_space[i] = sed_cmd->string[j + 1];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue