aboutsummaryrefslogtreecommitdiff
path: root/gacopyz
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-02-11 20:22:41 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-02-11 20:22:41 +0000
commit4cb6c6dd32298e583c45c49fce63d452bb903f27 (patch)
treee238807c7addb2a097ae1b6b93d4900c93dcd3a1 /gacopyz
parentff3b4d98516463b11de6be4a8540aaf2c6056a7b (diff)
downloadmailfromd-4cb6c6dd32298e583c45c49fce63d452bb903f27.tar.gz
mailfromd-4cb6c6dd32298e583c45c49fce63d452bb903f27.tar.bz2
gacopyz/trans.awk: Always quote /dev/stderr
git-svn-id: file:///svnroot/mailfromd/trunk@1248 7a8a7f39-df28-0410-adc6-e0d955640f24
Diffstat (limited to 'gacopyz')
-rw-r--r--gacopyz/trans.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/gacopyz/trans.awk b/gacopyz/trans.awk
index 820e9c91..43d42206 100644
--- a/gacopyz/trans.awk
+++ b/gacopyz/trans.awk
@@ -1,5 +1,5 @@
# This file is part of gacopyz.
-# Copyright (C) 2006 Sergey Poznyakoff
+# Copyright (C) 2006, 2007 Sergey Poznyakoff
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ NF==0 { next }
/[ \t]+/ && NF==1 {
if (!cur) {
- print NR ": no current element" >/dev/stderr
+ print NR ": no current element" >"/dev/stderr"
next
}
if (!statedecl[$1] && !undeclared[$1])
@@ -43,7 +43,7 @@ NF==0 { next }
END {
for (st in undeclared) {
- print undeclared[st] ": " st " undeclared" >/dev/stderr
+ print undeclared[st] ": " st " undeclared" >"/dev/stderr"
count++
}
if (count)

Return to:

Send suggestions and report system problems to the System administrator.