summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1993-12-11 20:08:39 +0000
committerjkh <jkh@FreeBSD.org>1993-12-11 20:08:39 +0000
commit2f700dbb7cc59cf830159b743190dd2bdcafb91c (patch)
treeb6622049de7e9da763a3f802334874b157df2a75 /libexec
parentfa2f9983992b8f76f4876d186e7f838007698a3a (diff)
downloadFreeBSD-src-2f700dbb7cc59cf830159b743190dd2bdcafb91c.zip
FreeBSD-src-2f700dbb7cc59cf830159b743190dd2bdcafb91c.tar.gz
Omitted 4th argument to findshlib() [thanks Rich!]. Our ld is a bit
different from NetBSD's here and it squeaked through the update.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-aout/rtld.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-aout/rtld.c b/libexec/rtld-aout/rtld.c
index f5e3bff..7da0508 100644
--- a/libexec/rtld-aout/rtld.c
+++ b/libexec/rtld-aout/rtld.c
@@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: rtld.c,v 1.8 1993/12/04 00:53:16 jkh Exp $
+ * $Id: rtld.c,v 1.9 1993/12/09 17:45:43 jkh Exp $
*/
#include <machine/vmparam.h>
@@ -933,7 +933,7 @@ int *usehints;
if (!HINTS_VALID || !(*usehints)) {
*usehints = 0;
- return (char *)findshlib(name, &major, &minor);
+ return (char *)findshlib(name, &major, &minor, 0);
}
if (ld_path != NULL) {
@@ -955,7 +955,7 @@ int *usehints;
/* No hints available for name */
*usehints = 0;
- return (char *)findshlib(name, &major, &minor);
+ return (char *)findshlib(name, &major, &minor, 0);
}
static int
OpenPOWER on IntegriCloud