We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63ce08 commit 6fb99caCopy full SHA for 6fb99ca
1 file changed
RSAL/RSAL.c
@@ -47,7 +47,6 @@ void sendMsg(char* msg){
47
char* receiveMsg(){
48
if ((t=recv(sock, str, 2048, 0)) > 0) {
49
str[t] = '\0';
50
- puts(str);
51
} else {
52
if (t < 0) perror("recv");
53
else printf("RSAL_PROC_MSG: Server closed connection\n");
0 commit comments