aboutsummaryrefslogtreecommitdiff
path: root/src/comp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index 52913ac..851ce5b 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -664,13 +664,19 @@ component_verify (struct component *comp, grecs_locus_t *locus)
664 comp->flags &= ~CF_WAIT; 664 comp->flags &= ~CF_WAIT;
665 } 665 }
666 666
667 if (comp->mode != pies_comp_exec 667 switch (comp->mode)
668 && comp->redir[RETR_OUT].type != redir_null) 668 {
669 case pies_comp_accept:
670 case pies_comp_inetd:
671 if (comp->redir[RETR_OUT].type != redir_null)
669 { 672 {
670 COMPERR (grecs_error, 673 COMPERR (grecs_error,
671 "%s", _("stdout redirection invalid in this mode")); 674 "%s", _("stdout redirection invalid in this mode"));
672 comp->redir[RETR_OUT].type = redir_null; 675 comp->redir[RETR_OUT].type = redir_null;
673 } 676 }
677 default:
678 break;
679 }
674 680
675 for (i = RETR_OUT; i <= RETR_ERR; i++) 681 for (i = RETR_OUT; i <= RETR_ERR; i++)
676 { 682 {

Return to:

Send suggestions and report system problems to the System administrator.