Commit 59166f0e7a69e5b7c4f56a5ead0d0fd06dc0235c

Authored by perry.werneck@gmail.com
1 parent 7b0877d5

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 53 char PipeName[4096];
54 54  
55 55 if(hPipe != INVALID_HANDLE_VALUE)
56   - return EBUSY;
  56 + return 0;
57 57  
58 58 snprintf(PipeName,4095,"\\\\.\\pipe\\%s",name);
59 59  
... ...