Skip to content

Commit

Permalink
check for pcsc socket in x_server_running_check_ports
Browse files Browse the repository at this point in the history
  • Loading branch information
jsorg71 committed Dec 7, 2017
1 parent 63d1e3e commit 693016a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sesman/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ x_server_running_check_ports(int display)
x_running = g_file_exist(text);
}

if (!x_running)
{
g_sprintf(text, XRDP_PCSC_STR, display);
x_running = g_file_exist(text);
}

return x_running;
}

Expand Down

0 comments on commit 693016a

Please sign in to comment.