summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-11-18 20:25:07 +0000
committerUlrich Drepper <drepper@redhat.com>2002-11-18 20:25:07 +0000
commit1daa81649b2faaf989e5848392a488c786db0820 (patch)
tree9ba1cf459014ddc1b6f524fa5ef79ceb8bdca4b2 /manual
parenta185f478f053d6e6a2322ce725b9eca70e929c4b (diff)
(Wordexp Example): Fix three bugs in the example code, all related to the options parameter.
Diffstat (limited to 'manual')
-rw-r--r--manual/pattern.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/pattern.texi b/manual/pattern.texi
index 0718ae5cfc..d4f287dcf2 100644
--- a/manual/pattern.texi
+++ b/manual/pattern.texi
@@ -1353,7 +1353,7 @@ to free the space allocated by @code{wordexp}.
@smallexample
int
-expand_and_execute (const char *program, const char *options)
+expand_and_execute (const char *program, const char **options)
@{
wordexp_t result;
pid_t pid
@@ -1373,9 +1373,9 @@ expand_and_execute (const char *program, const char *options)
@}
/* @r{Expand the strings specified for the arguments.} */
- for (i = 0; args[i]; i++)
+ for (i = 0; options[i] != NULL; i++)
@{
- if (wordexp (options, &result, WRDE_APPEND))
+ if (wordexp (options[i], &result, WRDE_APPEND))
@{
wordfree (&result);
return -1;