diff options
author | 2002-01-02 23:00:10 +0000 | |
---|---|---|
committer | 2002-01-02 23:00:10 +0000 | |
commit | 5ae9a25e5f9c19a31079ee381cacdfa83676449e (patch) | |
tree | a957a795ec700c2eb10122070c8c5a0258aaa7d4 /lib/libc/rpc/svc_tcp.c | |
parent | at least ; required after label or case; openbsd@davidkrause.com (diff) | |
download | wireguard-openbsd-5ae9a25e5f9c19a31079ee381cacdfa83676449e.tar.xz wireguard-openbsd-5ae9a25e5f9c19a31079ee381cacdfa83676449e.zip |
label abort() from inside library as ILLEGAL
Diffstat (limited to 'lib/libc/rpc/svc_tcp.c')
-rw-r--r-- | lib/libc/rpc/svc_tcp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/rpc/svc_tcp.c b/lib/libc/rpc/svc_tcp.c index f40f7e8644f..ad27be3888c 100644 --- a/lib/libc/rpc/svc_tcp.c +++ b/lib/libc/rpc/svc_tcp.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.20 2001/09/15 13:51:01 deraadt Exp $"; +static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.21 2002/01/02 23:00:10 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -82,9 +82,9 @@ static enum xprt_stat rendezvous_stat(); static struct xp_ops svctcp_rendezvous_op = { rendezvous_request, rendezvous_stat, - (bool_t (*)())abort, - (bool_t (*)())abort, - (bool_t (*)())abort, + (bool_t (*)())abort, /* XXX abort illegal in library */ + (bool_t (*)())abort, /* XXX abort illegal in library */ + (bool_t (*)())abort, /* XXX abort illegal in library */ svctcp_destroy }; |