mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
55754847d0
PR: 13960 Submitted by: maintainer
15 lines
376 B
Plaintext
15 lines
376 B
Plaintext
--- 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() {
|