summaryrefslogtreecommitdiff
path: root/backend/modules/frontend
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2011-09-27 21:39:11 +0200
committerAndreas Loibl <andreas@andreas-loibl.de>2011-09-27 21:39:11 +0200
commitfa22289c6fbd3abc1b4506553d55dcff20d619f1 (patch)
tree737b37738e80a9677934cbfbe72028f07e24d023 /backend/modules/frontend
parent18a5985a2b829aa0858433faee98c13a5c9a5d08 (diff)
downloadacritoxinstaller-fa22289c6fbd3abc1b4506553d55dcff20d619f1.zip
acritoxinstaller-fa22289c6fbd3abc1b4506553d55dcff20d619f1.tar.gz
strip_live_media, error handling, hdmap fixes
Diffstat (limited to 'backend/modules/frontend')
-rw-r--r--backend/modules/frontend6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/modules/frontend b/backend/modules/frontend
index ffa2d28..8c6c87c 100644
--- a/backend/modules/frontend
+++ b/backend/modules/frontend
@@ -10,11 +10,11 @@ function send()
function send_error()
{
if [ "$#" -gt 1 ]; then
- send error "$@" >&2
+ send error "$@"
elif [ "$#" -eq 1 ]; then
- send error "$1" "$(tr -d '\n')" >&2
+ send error "$1" "$(tr -d '\n')"
else
- send error 255 unknown >&2
+ send error 255 unknown
fi
return 1
}