Commit 4695e9cd authored by smorlat's avatar smorlat
Browse files

on windows, use linphoned, not linphonec.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@680 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
parent cc827eaa
No related merge requests found
Showing with 3 additions and 3 deletions
......@@ -174,11 +174,11 @@ static void spawn_linphonec(int argc, char *argv[]){
PROCESS_INFORMATION pinfo;
STARTUPINFO si;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pinfo, sizeof(pinfo) );
si.cb = sizeof(si);
ZeroMemory( &pinfo, sizeof(pinfo) );
BOOL ret=CreateProcess(NULL,"linphonec.exe --pipe -c NUL",
BOOL ret=CreateProcess(NULL,"linphoned.exe --pipe -c NUL",
NULL,
NULL,
FALSE,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment