diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-10-04 06:37:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-10-04 06:37:22 +0000 |
commit | adaa9fa632209fdd3263746aa3cf943632017821 (patch) | |
tree | 0d94de289f7ab01a5f34f19e32b7904d15d925f9 /lib/libc/rpc | |
parent | 77a72c1c33ddfdcd3927c5b67b9c010ae0756577 (diff) |
__xdrrec_getrec is in the reserved namespace, so it doesn't need to be weak
Diffstat (limited to 'lib/libc/rpc')
-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) |