aboutsummaryrefslogtreecommitdiff
path: root/news/bgrab/files/patch-ac
blob: 18db787f7ad934d80c2ce49d145c32308008e1ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- server.cc.orig      Thu Sep 16 16:50:51 1999
+++ server.cc   Thu Sep 16 17:00:39 1999
@@ -8,7 +8,10 @@
 server::server(char *host, unsigned long port) {
	inbuf = 0;
	bzero(buf,BUFSIZE+1);
-	soc = connectto(host,port);
+	if((soc = connectto(host,port)) == -1) {
+	    fprintf(stderr, "Cannot connect to host \"%s\"\n", host);
+	    exit(1);
+	}
 }

 int server::sockfd() {