diff options
author | sada <sada@FreeBSD.org> | 2000-07-15 14:34:37 +0000 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 2000-07-15 14:34:37 +0000 |
commit | 7e8874695e8e8ab3ea63f9199e469e7671304eb4 (patch) | |
tree | e5415fc715ce8bdc99553ef999d68c99ba975a43 /bin | |
parent | b77e9fa85321b1f2800aabda8a2e6d5f44ec2eac (diff) | |
download | FreeBSD-src-7e8874695e8e8ab3ea63f9199e469e7671304eb4.zip FreeBSD-src-7e8874695e8e8ab3ea63f9199e469e7671304eb4.tar.gz |
Fixd with alias missing.
PR: bin/19475
Approved by: Martin Cracauer <cracauer@cons.org> (with conditions)
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/alias.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/alias.c b/bin/sh/alias.c index 2d605ec..3d6d8a1 100644 --- a/bin/sh/alias.c +++ b/bin/sh/alias.c @@ -109,6 +109,7 @@ setalias(name, val) ap->val[len+1] = '\0'; } #endif + ap->flag = 0; ap->next = *app; *app = ap; INTON; |