aboutsummaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-12-06 22:00:44 +0200
committerArnold D. Robbins <arnold@skeeve.com>2011-12-06 22:00:44 +0200
commit3ba2f61ff006c308a904c8b1a4bc433082ce87c8 (patch)
tree634e529b16d2d8ea6b3655172f58d35e014edcb0 /profile.c
parent1527865d3c430aa203ed23fa7ecbeea30a604724 (diff)
downloadegawk-3ba2f61ff006c308a904c8b1a4bc433082ce87c8.tar.gz
egawk-3ba2f61ff006c308a904c8b1a4bc433082ce87c8.tar.bz2
egawk-3ba2f61ff006c308a904c8b1a4bc433082ce87c8.zip
Misc fixes from John.
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile.c b/profile.c
index 01d1e42f..eb788377 100644
--- a/profile.c
+++ b/profile.c
@@ -1362,8 +1362,8 @@ redir2str(int redirtype)
" >> ", /* redirect_append */
" | ", /* redirect_pipe */
" | ", /* redirect_pipein */
- " < " /* redirect_input */
- " |& " /* redirect_twoway */
+ " < ", /* redirect_input */
+ " |& ", /* redirect_twoway */
};
if (redirtype < 0 || redirtype > redirect_twoway)