Skip to content

Commit

Permalink
*removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
snoato committed Nov 30, 2015
1 parent a63ce08 commit 6fb99ca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion RSAL/RSAL.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ void sendMsg(char* msg){
char* receiveMsg(){
if ((t=recv(sock, str, 2048, 0)) > 0) {
str[t] = '\0';
puts(str);
} else {
if (t < 0) perror("recv");
else printf("RSAL_PROC_MSG: Server closed connection\n");
Expand Down

0 comments on commit 6fb99ca

Please sign in to comment.