Commit 59166f0e7a69e5b7c4f56a5ead0d0fd06dc0235c
1 parent
7b0877d5
Exists in
master
and in
5 other branches
Removendo erro quando a funcao connect do hllapi e chamada numa sessao ja conectada
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/plugins/remotectl/hllapi.c
@@ -53,7 +53,7 @@ | @@ -53,7 +53,7 @@ | ||
53 | char PipeName[4096]; | 53 | char PipeName[4096]; |
54 | 54 | ||
55 | if(hPipe != INVALID_HANDLE_VALUE) | 55 | if(hPipe != INVALID_HANDLE_VALUE) |
56 | - return EBUSY; | 56 | + return 0; |
57 | 57 | ||
58 | snprintf(PipeName,4095,"\\\\.\\pipe\\%s",name); | 58 | snprintf(PipeName,4095,"\\\\.\\pipe\\%s",name); |
59 | 59 |