From 1eb59c1f5d84e2318b54f56c895f3027d3be208a Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 27 Feb 2013 00:42:42 +0100 Subject: [PATCH] tests/common.sh: Simplify error redirection. --- tests/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.sh b/tests/common.sh index 769a78e..87781f2 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -28,7 +28,7 @@ abort() { exit 1 } server() { - gnutls-serv --http --port 4712 "$@" >/dev/null 2>/dev/null & + gnutls-serv --http --port 4712 "$@" >/dev/null 2>&1 & } client() { ./client ./proxy-ca.pem "$@" > tmp 2>&1 -- 2.44.1