commit | fab2a3c3d6cfb9ae353d646296f33a335237fbdb | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Jun 16 16:54:36 2014 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Jun 23 11:54:57 2014 +0200 |
tree | 7f529c9b73d799708e02d47e908276668f025810 | |
parent | e41072e7f9746fc793a12fda6d00b1c255c98b31 [diff] [blame] |
Fix port selection in ssl test scripts Port was selected in the 1000-1999 range which is bad (system ports).
diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index ddb7a0a..f43f1eb 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh
@@ -316,7 +316,7 @@ # Pick a "unique" port in the range 10000-19999. PORT="0000$$" -PORT="1$(echo $PORT | tail -c 4)" +PORT="1$(echo $PORT | tail -c 5)" # fix commands to use this port P_SRV="$P_SRV server_port=$PORT"