summaryrefslogtreecommitdiff
path: root/bin/sh/memalloc.c
diff options
context:
space:
mode:
authorTor Egge <tegge@FreeBSD.org>1998-09-13 19:24:57 +0000
committerTor Egge <tegge@FreeBSD.org>1998-09-13 19:24:57 +0000
commit5557a02a60f55d03c3644655a31e09316ef17617 (patch)
treefea002b13bc3d1fcdb034487b52280874cae2f5d /bin/sh/memalloc.c
parent7dcba2c8a1b1233299e69eb7622e7b4fd1c35dcf (diff)
downloadsrc-test2-5557a02a60f55d03c3644655a31e09316ef17617.tar.gz
src-test2-5557a02a60f55d03c3644655a31e09316ef17617.zip
Notes
Diffstat (limited to 'bin/sh/memalloc.c')
-rw-r--r--bin/sh/memalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index b2fa2b497faf..c40eadd075e5 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: memalloc.c,v 1.10 1998/09/06 21:13:09 tegge Exp $";
+ "$Id: memalloc.c,v 1.11 1998/09/10 14:51:06 cracauer Exp $";
#endif /* not lint */
#include "shell.h"
@@ -269,7 +269,7 @@ char *
growstackstr() {
int len = stackblocksize();
if (herefd >= 0 && len >= 1024) {
- xwrite(herefd, stackblock(), rmquotes(stackblock(), len));
+ xwrite(herefd, stackblock(), len);
sstrnleft = len - 1;
return stackblock();
}