diff --git a/socktest/common.c b/socktest/common.c index 854fda40..684103ae 100644 --- a/socktest/common.c +++ b/socktest/common.c @@ -47,7 +47,10 @@ void skt_open(sock *s) { if (sk_open(s) < 0) - SKT_ERR(s->err); + { + perror(s->err); + exit(1); + } if (cf_mcast) { diff --git a/socktest/common.h b/socktest/common.h index ff92908f..1dfd8d70 100644 --- a/socktest/common.h +++ b/socktest/common.h @@ -52,8 +52,6 @@ uint counter; /* global counter of send/recv packets */ uint cf_value; /* a value in packet */ uint cf_ttl; -#define SKT_ERR(x) do { perror(x); exit(-1); } while(0) - sock *skt_parse_args(int argc, char **argv, int is_send); void bird_init(void); void skt_open(sock *s);