diff options
author | jilles <jilles@FreeBSD.org> | 2013-08-14 21:59:48 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2013-08-14 21:59:48 +0000 |
commit | c71191e0d97a48198916f84fc4f1fd5c155af088 (patch) | |
tree | 9830ff1f61e27b9d9674599d547d49616ade0caa /bin | |
parent | 1201f3dac8c8e346ee33754cd8ecfd09c250d2e2 (diff) | |
download | FreeBSD-src-c71191e0d97a48198916f84fc4f1fd5c155af088.zip FreeBSD-src-c71191e0d97a48198916f84fc4f1fd5c155af088.tar.gz |
sh: Recognize "--" as end of options in local builtin.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/var.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/var.c b/bin/sh/var.c index 0de13fe..c20d032 100644 --- a/bin/sh/var.c +++ b/bin/sh/var.c @@ -710,6 +710,7 @@ localcmd(int argc __unused, char **argv __unused) { char *name; + nextopt(""); if (! in_function()) error("Not in a function"); while ((name = *argptr++) != NULL) { |