From: Steve Holme Date: Wed, 18 Sep 2013 18:32:20 +0000 (+0100) Subject: runtests.pl: Fixed syntax error in commit c873375123343e X-Git-Tag: curl-7_33_0~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04064e89c115ae62c425567585a77d6b8815dc0d;p=curl runtests.pl: Fixed syntax error in commit c873375123343e Possible unintended interpolation in string at line 796 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index e840053ef..06ec86f8a 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -793,7 +793,7 @@ sub verifyftp { # SMTP is a bit different since it requires more options and it # has _no_ output! $extra .= "--mail-rcpt verifiedserver "; - $extra .= "--mail-from fake@example.com "; + $extra .= "--mail-from fake\@example.com "; $extra .= "--upload /dev/null "; $extra .= "--stderr - "; # move stderr to parse the verbose stuff }