diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 0134610..b290b6d 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -1761,7 +1761,7 @@ makestrspace(size_t newlen, char *p) } static char * -stack_nputstr(const char *s, size_t n, char *p) +stnputs(const char *s, size_t n, char *p) { p = makestrspace(n, p); p = (char *)mempcpy(p, s, n); @@ -1771,7 +1771,7 @@ stack_nputstr(const char *s, size_t n, char *p) static char * stack_putstr(const char *s, char *p) { - return stack_nputstr(s, strlen(s), p); + return stnputs(s, strlen(s), p); } static char * @@ -6756,7 +6756,7 @@ argstr(char *p, int flags) } if (length > 0) { int newloc; - expdest = stack_nputstr(p, length, expdest); + expdest = stnputs(p, length, expdest); newloc = expdest - (char *)stackblock(); if (breakall && !inquotes && newloc > startloc) { recordregion(startloc, newloc, 0); |