diff options
author | 2015-10-04 06:37:21 +0000 | |
---|---|---|
committer | 2015-10-04 06:37:21 +0000 | |
commit | 5dae0449ff1752d3e714fcc2e9183e05cf071b80 (patch) | |
tree | dfb2b100dd738e2382266847a6997ecd20187871 /lib/libc | |
parent | Delete an inexplicable comment (diff) | |
download | wireguard-openbsd-5dae0449ff1752d3e714fcc2e9183e05cf071b80.tar.xz wireguard-openbsd-5dae0449ff1752d3e714fcc2e9183e05cf071b80.zip |
__xdrrec_getrec is in the reserved namespace, so it doesn't need to be weak
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/rpc/xdr_rec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/xdr_rec.c b/lib/libc/rpc/xdr_rec.c index c9216ffa192..7a94a4d003b 100644 --- a/lib/libc/rpc/xdr_rec.c +++ b/lib/libc/rpc/xdr_rec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xdr_rec.c,v 1.20 2015/09/13 15:36:56 guenther Exp $ */ +/* $OpenBSD: xdr_rec.c,v 1.21 2015/10/04 06:37:21 guenther Exp $ */ /* * Copyright (c) 2010, Oracle America, Inc. @@ -582,7 +582,7 @@ __xdrrec_getrec(XDR *xdrs, enum xprt_stat *statp, bool_t expectdata) *statp = XPRT_MOREREQS; return (FALSE); } -DEF_WEAK(__xdrrec_getrec); +DEF_STRONG(__xdrrec_getrec); bool_t __xdrrec_setnonblock(XDR *xdrs, int maxrec) |