aboutsummaryrefslogtreecommitdiff
path: root/src/comp.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2016-03-02 18:33:23 +0200
committerSergey Poznyakoff <gray@gnu.org>2016-03-02 18:47:28 +0200
commitc767932556198cb064e7552bea14cc3563a114d0 (patch)
tree15e1ff9d07c07ab3e4a7308804f12ce700c2d7db /src/comp.c
parent801656d6ae9b6c5cb199b2e53001ecaac41db4ae (diff)
downloadpies-c767932556198cb064e7552bea14cc3563a114d0.tar.gz
pies-c767932556198cb064e7552bea14cc3563a114d0.tar.bz2
Bugfixes
* src/comp.c (component_verify): Fix stdout redirection check. * src/meta1parse.c (meta1_translate_node): Skip simple statements. (meta1_translate_node): Allocate comp->dir * doc/pies.texi: Use @example instead of @smallexample
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/comp.c b/src/comp.c
index 52913ac..851ce5b 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -663,13 +663,19 @@ component_verify (struct component *comp, grecs_locus_t *locus)
COMPERR (grecs_error, "%s", _("wait is useless in this mode"));
comp->flags &= ~CF_WAIT;
}
-
- if (comp->mode != pies_comp_exec
- && comp->redir[RETR_OUT].type != redir_null)
+
+ switch (comp->mode)
{
- COMPERR (grecs_error,
- "%s", _("stdout redirection invalid in this mode"));
- comp->redir[RETR_OUT].type = redir_null;
+ case pies_comp_accept:
+ case pies_comp_inetd:
+ if (comp->redir[RETR_OUT].type != redir_null)
+ {
+ COMPERR (grecs_error,
+ "%s", _("stdout redirection invalid in this mode"));
+ comp->redir[RETR_OUT].type = redir_null;
+ }
+ default:
+ break;
}
for (i = RETR_OUT; i <= RETR_ERR; i++)

Return to:

Send suggestions and report system problems to the System administrator.