From 4618b501f3194dd148d0ad255670e4ae436860a8 Mon Sep 17 00:00:00 2001 From: Bladen Martin Date: Thu, 28 May 2020 22:28:40 +0530 Subject: to iterate all the IPs and ports and send close message to all the ghdlserver --- src/outitf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/outitf.c b/src/outitf.c index c4cbfe4..c015c04 100644 --- a/src/outitf.c +++ b/src/outitf.c @@ -147,7 +147,7 @@ static void close_server(void) if (connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0) { - printf("\nConnection Failed \n"); + printf("\nConnection Failed\n"); } send(sock , message , strlen(message) , 0 ); close(sock); -- cgit