From 91d318ba7bf7c3fcc8772dd2d1470cae37dc007e Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Sat, 5 Sep 2015 17:00:27 +0200 Subject: [PATCH] Enable RFX for test connection, now required by sample server. --- libfreerdp/core/test/TestConnect.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libfreerdp/core/test/TestConnect.c b/libfreerdp/core/test/TestConnect.c index b7835a485..94e473ca2 100644 --- a/libfreerdp/core/test/TestConnect.c +++ b/libfreerdp/core/test/TestConnect.c @@ -158,8 +158,10 @@ static int testSuccess(void) "test", "/v:127.0.0.1", "/cert-ignore", + "/rfx", NULL }; + int argc = 4; char* path = TESTING_OUTPUT_DIRECTORY; char* wpath = TESTING_SRC_DIRECTORY; char* exe = GetCombinedPath(path, "server"); @@ -218,7 +220,7 @@ static int testSuccess(void) free(wpath); Sleep(1000); - rc = runInstance(3, argv, NULL); + rc = runInstance(argc, argv, NULL); if (!TerminateProcess(process.hProcess, 0)) return -2;