From 2f700dbb7cc59cf830159b743190dd2bdcafb91c Mon Sep 17 00:00:00 2001 From: jkh Date: Sat, 11 Dec 1993 20:08:39 +0000 Subject: Omitted 4th argument to findshlib() [thanks Rich!]. Our ld is a bit different from NetBSD's here and it squeaked through the update. --- libexec/rtld-aout/rtld.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libexec') 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 @@ -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 -- cgit v1.1